Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created August 22, 2023 06:08
Show Gist options
  • Save codecademydev/f70f91313fe558d91561158c19a85020 to your computer and use it in GitHub Desktop.
Save codecademydev/f70f91313fe558d91561158c19a85020 to your computer and use it in GitHub Desktop.
Codecademy export
let raceNumber = Math.floor(Math.random() * 1000);
let early = true;
let age = 18;
if(early && age > 18){
console.log(`you will start race at 9:30 am and race number is ${ raceNumber}`);
}
else if(!early && age > 18){
console.log(`you will start race at 11:00 am and race number is ${ raceNumber}`
);}
else if(age < 18){console.log(`you will start race at 12:30 pm and race number is ${ raceNumber}`
)}
else{console.log('should see the registration desk')};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment