Array Methods In JavaScript
Different array methods are as follows :
Length: As its name suggests that it defines the length of an array.
let abc=["a", "b", "c", "d"];
console.log(abc);
console.log(abc.length);
Push: It is an array method which is used to push or we can say ...
durgesh04.hashnode.dev4 min read