Skip to content

Instantly share code, notes, and snippets.

@TravelingTechGuy
Created June 17, 2014 23:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TravelingTechGuy/598123f5e45746b7d09e to your computer and use it in GitHub Desktop.
Save TravelingTechGuy/598123f5e45746b7d09e to your computer and use it in GitHub Desktop.
Fill array with same value/function
var myFunc = function(x){return x*2;};
var num = 3;
var array = Array.apply(null, Array(num)).map(function(){return myFunc;});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment