运行 ❯
获取你
自己的 Node
服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
// Implicit any as JSON.parse doesn't know what type of data it returns so it can be "any" thing... const json = JSON.parse("55"); // Most expect json to be an object, but it can be a string or a number like this example console.log(typeof json);
number