Last active
November 30, 2017 16:45
-
-
Save linlymatsumura/db9d7b555c4ab4f293576fcbd3928b2f to your computer and use it in GitHub Desktop.
最初だけ違うことをする関数
This file contains 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
let foo = () => { | |
console.log('hello!') | |
foo = () => { | |
console.log('hi') | |
} | |
} | |
foo() // hello! | |
foo() // hi | |
foo() // hi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment