Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Dylan0916/15c3d4a62f0a15e2b7a5a210f6a23f54 to your computer and use it in GitHub Desktop.
Save Dylan0916/15c3d4a62f0a15e2b7a5a210f6a23f54 to your computer and use it in GitHub Desktop.
// 一般寫法
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