Created
September 12, 2021 12:11
-
-
Save redradist/83dce98df9ca5cbc22ebab2d7b1ea31b to your computer and use it in GitHub Desktop.
TypeScript string and number coericion
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let y = 8; | |
... | |
//@ts-ignore | |
y += "233"; // Ok from TypeScript compiler point of view | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment