151. implement Array.prototype.map()

medium  - 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.

Always try to find a better approach.

(143)