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.
ドット表記のみを使用して Javascript オブジェクトにネストされた要素を作成するにはどうすればよいですか? お気に入り
a= {}; a.b = 100; //is valid a.x.y = 200; //is invalid?
a.x3 番目は未定義であるため無効です。
a.x
そして、値をに設定しようとしていますundefined property
undefined property
a= {}; a.b = 100; //is valid a.x = {}; a.x.y = 200; // This works
正確にはできません。
a.x = {y: 200};