You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//Run this script in your favourite browser’s console
//Assumption 1: Your parents took you to movies when you were 5 years old
//Assumption 2: You were that old on May 25, 1977
var AGE_THRESHOLD = 42;
var your_age = prompt("Please enter your age", AGE_THRESHOLD)
if(isNaN(your_age))
{
console.log("Your age must be numeric");
}
else
{
var valediction = (your_age < AGE_THRESHOLD) ? "May the odds be ever in your favour" : "May the force be with you";
console.log(valediction);
}