Understanding Arrays in JavaScript
When we start learning programming, we usually store values in variables.
let fruit1 = "Apple";
let fruit2 = "Banana";
let fruit3 = "Mango";
This works fine for a few values.But what if we need to st
blog.ashishkumarsaini.dev5 min read