Skip to content

Instantly share code, notes, and snippets.

View ildede's full-sized avatar
🪬
Eye am watching you

Davide Pedron ildede

🪬
Eye am watching you
View GitHub Profile
@ildede
ildede / is-person-old.js
Created March 31, 2020 16:43
Check if "person" is old.
if (person.sex == "woman" && person.superpowers.contains("Find everithing")) {
return "Yes, this person is old";
} else {
return "No, this person is still young";
}