Skip to content

Instantly share code, notes, and snippets.

@diogocapela
Created October 22, 2021 13:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save diogocapela/7000e599596e0c91300c8c340c2ab2f4 to your computer and use it in GitHub Desktop.
Save diogocapela/7000e599596e0c91300c8c340c2ab2f4 to your computer and use it in GitHub Desktop.
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