Skip to content

Instantly share code, notes, and snippets.

@robertcoopercode
Created January 8, 2019 23:51
Show Gist options
  • Save robertcoopercode/2ca53748335355290d419759647406ea to your computer and use it in GitHub Desktop.
Save robertcoopercode/2ca53748335355290d419759647406ea to your computer and use it in GitHub Desktop.
let whoKnows: any = 4; // assigned a number
whoKnows = 'a beautiful string'; // can be reassigned to a string
whoKnows = false; // can be reassigned to a boolean
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment