There are two ways to access properties of objects: var obj = {a: 'foo', b: 'bar'}; obj.a //foo obj['b'] //bar.
確定! 回上一頁