###以下の配列から2番目のオブジェクトにあるyのバリューを取り出したい場合
sample.js
const points = [
{x: 10, y:20},
{x: 30, y:40},
{x: 50, y:60},
];
###取得方法
配列の番号を指定してその番号(オブジェクト)の値を指定してあげるとバリューを取得可能
console.log(points[1]["y"])
もしくはconsole.log(points[1].y)
sample.js
const points = [
{x: 10, y:20},
{x: 30, y:40},
{x: 50, y:60},
];