Quick note on Array map
The Array.prototype.map() runs a function for each element in an array and returns the value of the function into a new array.
It's just like a loop that creates a new array based on the function passed to it.
Let's say we have an array of weebs whic...
miracleio.hashnode.dev2 min read