Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save robbinhan/168efa7cd385b7405e55 to your computer and use it in GitHub Desktop.
Save robbinhan/168efa7cd385b7405e55 to your computer and use it in GitHub Desktop.
Multipler.prototype.multiple = function(numbers){
return numbers.map((number) => number*this.inc);
};
console.log(new Multipler(2).multiple([1,2,3,4]));// => [ 2, 4, 6, 8 ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment