Do You Know JS? Array.from In 60 Seconds
What is array.from?
Array.from is a JavaScript method that make you create an array from any iterate-able object i.e from a String, Set, Map, NodeList basically any object that has a length property.
Examples
// Array from string
Array.from('bar');
/...
samsonadesanoye.hashnode.dev1 min read