1) How to first element in an array
// first element in an array
// 0 1 2 3 4 5
const arr = ['A', 'B', 'C', true, 20, 'xyz'];
console.log(arr[0]); // A
===============================================================================================
TERMINAL:
Comments
Post a Comment