Guest User

Untitled

a guest
Dec 13th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. var a;
  2. if(true)
  3. a = 4
  4. else
  5. a = "lol"
  6.  
  7. var b: number = a // IMPLICIT CONVERSION from any to number
  8.  
  9.  
  10. function staticCheck(a: number)
  11. {
  12. alert("dynamic types")
  13. }
  14.  
  15. staticCheck(b) // no compile error
Add Comment
Please, Sign In to add comment