執行 ❯
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