Last active
January 20, 2024 08:09
-
-
Save desinas/907ac97e97223030721c248879c52e79 to your computer and use it in GitHub Desktop.
Navigating the food chain Quiz from Udacity Front end developer
var eatsPlants = false;
var eatsAnimals = false;
var category = (eatsPlants && eatsAnimals) ? "omnivore": (!eatsPlants && eatsAnimals) ? "carnivore" : (eatsPlants && !eatsAnimals) ? "herbivore" : (!eatsPlants && !eatsAnimals) ? "undefined": undefined
console.log(category);
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
var eatsPlants = false;
var eatsAnimals = false;
var category = eatsPlants && eatsAnimals ? "omnivore" : ( eatsAnimals ? "carnivore" : ( eatsPlants ? "herbivore" : "undefined" ) );
console.log(category);