Skip to content

Instantly share code, notes, and snippets.

@opedrosouza
Last active October 20, 2019 03:45
Show Gist options
  • Save opedrosouza/c695fbabd24a592d57087d6189792387 to your computer and use it in GitHub Desktop.
Save opedrosouza/c695fbabd24a592d57087d6189792387 to your computer and use it in GitHub Desktop.
Teste de inclusão no site
var hello = 'Hello'
let world = 'World'
const phrase = `Phrase => ${hello} ${world}`
age = 23
birth = 2019
birhtday = 1996
calcAge = (birth, birthday) => birth - birthday
if (calcAge(birth, birthday) == 23) {
console.log('You have 23 years')
} else {
console.log('LOL')
}
console.log(phrase)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment