Created
August 23, 2015 02:37
-
-
Save chuck0523/c879c8f640594c396610 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
# comment | |
### | |
multi-line comment | |
### | |
### | |
1. var 要らず | |
2. 文末の; は不要 | |
3. {}のブロックも不要 | |
4. ()は曖昧性がない場合は不要 | |
var score = 82; | |
if( score > 80 ) { | |
console.log('ok'); | |
} | |
↑こう書かなきゃいけないところが、以下のようになります | |
### | |
score = 82 | |
if score > 80 | |
console.log 'ok' | |
# すっきりした! | |
# JSをそのまま埋め込む | |
`alert('ok')` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment