Skip to content

Mou31/JavaScript-Questions

Repository files navigation

JavaScript-Questions

Various JavaScript Solutions Array Methods In JavaScript, there are various array methods available that makes it easier to perform useful calculations.

Some of the commonly used JavaScript array methods are:

Method Description

concat() joins two or more arrays and returns a result

indexOf() searches an element of an array and returns its position

find() returns the first value of an array element that passes a test

findIndex() returns the first index of an array element that passes a test

forEach() calls a function for each element

includes() checks if an array contains a specified element

push() adds a new element to the end of an array and returns the new length of an array

unshift() adds a new element to the beginning of an array and returns the new length of an array

pop() removes the last element of an array and returns the removed element

shift() removes the first element of an array and returns the removed element

sort() sorts the elements alphabetically in strings and in ascending order

slice() selects the part of an array and returns the new array

splice() removes or replaces existing elements and/or adds new elements

About

Various JavaScript Solutions

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published