Created
June 25, 2018 14:40
-
-
Save Dylan0916/15c3d4a62f0a15e2b7a5a210f6a23f54 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 temp = true | |
if (temp) { | |
todoSomething() | |
} | |
// 短路求值 | |
temp && todoSomething() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment