Получить первый элемент в JSON Array JavaScript

const json = "[1, 2, 3]";
const firstElement = JSON.parse(json)[0];
Le Minh Ha