运行 ❯
获取您
自己的 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