function wow(arg) { if (arg === "dog") return "LOVELY"; if (arg === "cat") return "CUTE"; return ("gimme an animal"); }
wow("cat"); //-> "CUTE" // or
function anotherWow() { return (arg === “dog”) ? “LOVELY”:((arg === “cat”) ? “CUTE”:”gimme an animal”); } anotherWow(“cat”);
Yah... but what? 😅
Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink.
Hide child comments as well
Confirm
For further actions, you may consider blocking this person and/or reporting abuse
We're a blogging-forward open source social network where we learn from one another
function wow(arg)
{
if (arg === "dog") return "LOVELY";
if (arg === "cat") return "CUTE";
return ("gimme an animal");
}
wow("cat");
//-> "CUTE"
// or
function anotherWow()
{
return (arg === “dog”) ? “LOVELY”:((arg === “cat”) ? “CUTE”:”gimme an animal”);
}
anotherWow(“cat”);
Yah... but what? 😅