let val: any = 22; | |
val = "hello"; | |
val = new Array(); | |
val.myNonExistantFunction(); | |
console.log(val); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
let val: any = 22; | |
val = "hello"; | |
val = new Array(); | |
val.myNonExistantFunction(); | |
console.log(val); |