Skip to content

Instantly share code, notes, and snippets.

@antonkartashov
Created July 28, 2015 14:14
Show Gist options
  • Save antonkartashov/1cf3c297032649ba6416 to your computer and use it in GitHub Desktop.
Save antonkartashov/1cf3c297032649ba6416 to your computer and use it in GitHub Desktop.
var num = 14;
if (num > 16) {
console.log("Больше, чем 16.");
} else {
console.log("Меньше, чем 16, или равно.");
}
// => Меньше, чем 16, или равно.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment