Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created January 13, 2021 18:38
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 codecademydev/f153fdbeaa03e7c999c6a06afcab4549 to your computer and use it in GitHub Desktop.
Save codecademydev/f153fdbeaa03e7c999c6a06afcab4549 to your computer and use it in GitHub Desktop.
Codecademy export
let mood = 'sleepy';
let tirednessLevel = 6;
if (mood === 'sleepy' && tirednessLevel > 8) {console.log('time to sleep!');} else {console.log ('Not bed time yet!');}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment