Skip to content

Instantly share code, notes, and snippets.

@karkranikhil
Last active April 15, 2019 11:45
Show Gist options
  • Select an option

  • Save karkranikhil/fda7700cd7d4c2c88638466904c33363 to your computer and use it in GitHub Desktop.

Select an option

Save karkranikhil/fda7700cd7d4c2c88638466904c33363 to your computer and use it in GitHub Desktop.
function createArrFunction(){
const arr=[]
for(var i=0;i<5;i++){
arr.push(function(){ console.log(i)})
}
return arr
}
const getArrFunction = createArrFunction()
getArrFunction[0]() // return 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment