JavaScript JSON.parse関数で文字列をtrueとして利用するサンプル

環境
Google Chrome 111.0.5563.147
Windows 10 Home 64bit
構文
JSON.parse(text)
JSON として解析する文字列。JSON の構文の説明は JSON オブジェクトを参照してください。
戻り値
Object, Array, 文字列, 数値, 論理値, null 値のいずれかで、指定された
JSON の text に対応する値です。

使用例

let str = 'true';

let resA = JSON.parse(str);

console.log(resA); 

str = 'false';

resB = JSON.parse(str);

console.log(resB);

実行結果
> true
> false

JavaScript

Posted by arkgame