Run ❯
Get your own Node server
❯Run Code Ctrl+Alt+R
Change Orientation Ctrl+Alt+O
Change Theme Ctrl+Alt+D
Go to Spaces Ctrl+Alt+P
let v: any = true; v = "string"; // no error as it can be "any" type // v.runANonExistentMethod(); // no type error in the editor, but will still throw an error if commented in console.log(Math.round(v)); // no error as it can be "any" type
NaN