Skip to content

Instantly share code, notes, and snippets.

@hellofromtonya
Created October 2, 2017 16: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 hellofromtonya/826a95ed19a6fc4d32dfbc64af497bef to your computer and use it in GitHub Desktop.
Save hellofromtonya/826a95ed19a6fc4d32dfbc64af497bef to your computer and use it in GitHub Desktop.
cs0110-3.3-branch-javascript.js
if ( weatherIsSunny && ! weatherIsRaining && ! isWorking ) {
console.log( "Going to the festival" );
} else if ( movieIsPlaying ) {
console.log( "Going to the movies" );
} else {
console.log( "Staying home" );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment