What is Array Like Object in JavaScript
Before understanding what is Array like object, lets first have a look at what is an array and what is an object.
Array: Array is an indexed collection that can hold data of any type.
They are created with [ ].
Example: let arr = [1, 2, 'capscode', t...
capscode.hashnode.dev8 min read