JavaScript Arrays 101: Create, Access, Update, and Loop Through Arrays
When we start learning JavaScript most of the time we work with simple values. Maybe a number, or maybe a string.
let fruit = 'Apple';
let marks = 95;
Something like this pretty straightforward. But
jatinsood.hashnode.dev5 min read