Created
December 10, 2014 18:37
-
-
Save ryanvgates/0c7ffde58a28933399d8 to your computer and use it in GitHub Desktop.
if statement with single quotes
This file contains hidden or 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
var fruit = 'orange'; | |
if (fruit.length > 5) { | |
console.log('The fruit name has more than five characters.'); | |
} else { | |
console.log('The fruit name has five characters or less.'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment