Objects and Arrays
Arrays
Sometimes we want to represent numbers as a sequence, as, 3, 4, 10, 11. We can use strings but it will awkward to extract them and convert them back to numbers.
Fortunately, JavaScript has arrays that store a list of values. They are written a...
nikitaagarwal.hashnode.dev6 min read
Saurabh Mhatre
Frontend Developer
Good article for beginners. An array of Objects is usually called a JSON array in javascript since it is a collection JSON representation format. Most of the methods are covered in a precise manner.