Array methods in JS
Firstly, We'll discuss what are arrays in JS. after that, the methods provided by JS.
What are Arrays?
An array in JS is a single variable that can store multiple values in it.
syntax:
declaration variable_name = [item1, item2, item3, .....so on];
T...
varungupta.hashnode.dev3 min read