运行 ❯
Node 服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
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