12 9 月 04 Object Array , push 和讀 Powen Ko | CH04 Array | off httpsss://js.do/powenko/04-object-array-push <script> // Edit your script here var c=[]; var b={"a":"1","b":"2"}; c.push(b); c.push(b); for(let i=0;i<c.length;i++){ obj1=c[i]; console.log(obj1["a"]); } </script>