Skip to content

Instantly share code, notes, and snippets.

@joaogolias
Last active October 30, 2018 15:12
Show Gist options
  • Save joaogolias/5f5beec3e21514b4f3a36009ffb26a91 to your computer and use it in GitHub Desktop.
Save joaogolias/5f5beec3e21514b4f3a36009ffb26a91 to your computer and use it in GitHub Desktop.
const myAge: number = 20
let myDescirption: string = 'Hello'
if (myAge > 0) {
myDescirption += ', I am ' + myAge.toString()
} else {
myDescirption += ', I have just been born'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment