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.
これは簡単なはずですが、解決策が見つかりません。未定義にしたいオブジェクトがあります。typeof を undefined に変更するにはどうすればよいですか? ありがとう!
カイル
オブジェクト自体は作成できませんが、それundefinedを参照する変数は作成できますundefined。
undefined
var myObj = { ... }; myObj = undefined;
キーワード「delete」を使用して削除できるはずです。その場合、その参照は未定義になります。
delete myObj;