Skip to content

Instantly share code, notes, and snippets.

@thebeebs
Created February 12, 2014 19:09
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 thebeebs/8962419 to your computer and use it in GitHub Desktop.
Save thebeebs/8962419 to your computer and use it in GitHub Desktop.
So If I change the x to a number. Then the product of x+x will be a number. So v is inferred to be a number
function process(x : number){
var v = x + x;
alert(v);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment