14
loading...
This website collects cookies to deliver better user experience
TLDR: checkout this video made by Thomas Chaplin with a great introduction too! (Spanish video coming soon!)
function isUserOldEnough(user) {
return user.age >= 18;
}
/* 1 */ return user.age > 18;
/* 2 */ return user.age < 18;
/* 3 */ return false;
/* 4 */ return true;
// ☝️ this are mutants!! ☝️