Dapatkan Elemen Pertama di JSON Array JavaScript

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