Created
August 29, 2019 16:45
-
-
Save djD-REK/981f99664b79f8af370b09a994bd6964 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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