Array Methods in JavaScript are Following: 1) push() push() method is use to add element at the end of an Array example let car = ["alto", "wagonR", "swift", "eeco"]; car.push("ertiga"); console.log(car); //output: [ 'alto', 'wagonR', 'swift', 'eec...
geekyjedy.hashnode.dev3 min read
No responses yet.