Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

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