[lang-ref] ( first_element ) ( javascript )

test("first element", () => {
  // items[0]
  const items = ['A', 'B', 'C', 'D', 'E'];
  const r = items[0];

  expect(r).toEqual('A');
});