-
-
Save diogocapela/7000e599596e0c91300c8c340c2ab2f4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function greet(person) { | |
if (person == { name: 'amy' }) { | |
return 'hey amy' | |
} else { | |
return 'hey arnold' | |
} | |
} | |
console.log(greet({ name: 'amy' })) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment