['y']
’y’(文字列)の場合は[ ]で展開する!
const points = [
{x: 100, y: 300},
{x: 500, y: 600},
{x: 700, y: 1200},
];
console.log(points[1].y);
console.log(points[1]['y']);
’y’(文字列)の場合は[ ]で展開する!
const points = [
{x: 100, y: 300},
{x: 500, y: 600},
{x: 700, y: 1200},
];
console.log(points[1].y);
console.log(points[1]['y']);