Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
たとえば、変数があります
var x = "this is X value";
変数がJSONオブジェクトの場合、node.jsをチェックインする方法は?
あなたの質問は明確ではありませんが、変数に解析されていない JSON 文字列があるかどうかを確認するつもりであると仮定します。
try { JSON.parse(x); } catch (e) { console.log("not JSON"); }