Skip to content

Instantly share code, notes, and snippets.

@rahulbanerjee26
Created July 6, 2022 04:08
Show Gist options
  • Save rahulbanerjee26/b64574fb7d3bbf243ab0120c41756b06 to your computer and use it in GitHub Desktop.
Save rahulbanerjee26/b64574fb7d3bbf243ab0120c41756b06 to your computer and use it in GitHub Desktop.
const outerFunc = () => {
console.log("Outer Function")
const innerFunc = () =>{
console.log("Inner Function")
}
return innerFunc
}
outerFunc()()
// OUTPUT
// Outer Function
// Inner Function
const myFunc = outerFunc()
myFunc()
myFunc()
// OUTPUT
// Outer Function
// Inner Function
// Inner Function
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment