この記事は編集レビューを必要としています。ぜひご協力ください。
メッセージ
TypeError: null has no properties TypeError: undefined has no properties
エラータイプ
何がうまくいかなかったのか?
null
と undefined
に、アクセス可能なプロパティはありません。
例
null.foo; // TypeError: null has no properties undefined.bar; // TypeError: undefined has no properties