Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Created August 23, 2015 03:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chuck0523/cd5884c1cc0b3880c42f to your computer and use it in GitHub Desktop.
Save chuck0523/cd5884c1cc0b3880c42f to your computer and use it in GitHub Desktop.
(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