Skip to content

Instantly share code, notes, and snippets.

@djD-REK
Created August 29, 2019 16:45
Show Gist options
  • Save djD-REK/981f99664b79f8af370b09a994bd6964 to your computer and use it in GitHub Desktop.
Save djD-REK/981f99664b79f8af370b09a994bd6964 to your computer and use it in GitHub Desktop.
var myFunction = function myFunction() {
console.log(myFunction === myFunction);
};
myFunction();
const functionTwo = () => {
console.log(functionTwo === functionTwo);
};
functionTwo();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment