Skip to content

Instantly share code, notes, and snippets.

@aspencer8111
Forked from courtlandalves/js_conditionals.js
Created October 25, 2016 01:22
Show Gist options
  • Save aspencer8111/a6c7dee7becfdf9699ffafd5f501251a to your computer and use it in GitHub Desktop.
Save aspencer8111/a6c7dee7becfdf9699ffafd5f501251a to your computer and use it in GitHub Desktop.
// What will this code print?
function can_ride(height) {
if(height > 6) {
console.log("You can ride the ride");
}else if(height !== 5) {
console.log("You can't ride");
}else{
console.log("stop");
}
};
can_ride(5);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment