Created
August 23, 2015 03:06
-
-
Save chuck0523/cd5884c1cc0b3880c42f 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
(function() { | |
var msg, score; | |
score = 80; | |
if (score > 60) { | |
console.log(score); | |
} | |
if (score > 60) { | |
console.log(score); | |
} | |
if (score > 60) { | |
console.log(score); | |
} | |
if (score > 60) { | |
console.log('ok'); | |
} else { | |
console.log('ng'); | |
} | |
if (score > 60) { | |
console.log('ok'); | |
} else { | |
'ng'; | |
} | |
msg = score > 60 ? 'ok' : 'ng'; | |
console.log(msg); | |
}).call(this); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment