Skip to content

Instantly share code, notes, and snippets.

View ildede's full-sized avatar
⚙️
Test, test, test

Davide Pedron ildede

⚙️
Test, test, test
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";
}