151. implement Array.prototype.map()
JavaScriptIs this helpful ?
Share
from all members: - accepted / - tried
Please implement your own Array.prototype.map().
[1,2,3].myMap(num => num * 2)
// [2,4,6]
please avoid using Array.prototype.map() directly in your code.