Skip to content

Instantly share code, notes, and snippets.

@ryanvgates
Created December 10, 2014 18:37
Show Gist options
  • Save ryanvgates/0c7ffde58a28933399d8 to your computer and use it in GitHub Desktop.
Save ryanvgates/0c7ffde58a28933399d8 to your computer and use it in GitHub Desktop.
if statement with single quotes
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