Premium Only Content
JavaScript Array Functions (#shorts)
Hi Friends,
JavaScript Array Functions
JavaScript provides many useful built-in functions for working with arrays. Here are some examples of commonly used array functions:
push(): adds one or more elements to the end of an array.
let fruits = ['apple', 'banana'];
fruits.push('orange', 'pear');
console.log(fruits); // ["apple", "banana", "orange", "pear"]
pop(): removes the last element from an array and returns it.
let fruits = ['apple', 'banana', 'orange'];
let lastFruit = fruits.pop();
console.log(lastFruit); // "orange"
console.log(fruits); // ["apple", "banana"]
shift(): removes the first element from an array and returns it.
let fruits = ['apple', 'banana', 'orange'];
let firstFruit = fruits.shift();
console.log(firstFruit); // "apple"
console.log(fruits); // ["banana", "orange"]
unshift(): adds one or more elements to the beginning of an array.
let fruits = ['apple', 'banana'];
fruits.unshift('orange', 'pear');
console.log(fruits); // ["orange", "pear", "apple", "banana"]
slice(): returns a new array containing a portion of the original array.
let fruits = ['apple', 'banana', 'orange', 'pear'];
let citrus = fruits.slice(2);
console.log(citrus); // ["orange", "pear"]
splice(): changes the contents of an array by removing or replacing existing elements and/or adding new elements.
let fruits = ['apple', 'banana', 'orange', 'pear'];
fruits.splice(1, 2, 'grape', 'melon');
console.log(fruits); // ["apple", "grape", "melon", "pear"]
concat(): merges two or more arrays and returns a new array.
let fruits = ['apple', 'banana'];
let moreFruits = ['orange', 'pear'];
let allFruits = fruits.concat(moreFruits);
console.log(allFruits); // ["apple", "banana", "orange", "pear"]
indexOf(): returns the index of the first occurrence of a specified value in an array, or -1 if it is not found.
let fruits = ['apple', 'banana', 'orange'];
let orangeIndex = fruits.indexOf('orange');
console.log(orangeIndex); // 2
filter(): returns a new array containing all elements that pass a specified test.
let numbers = [1, 2, 3, 4, 5];
let evenNumbers = numbers.filter(function(number) {
return number % 2 === 0;
});
console.log(evenNumbers); // [2, 4]
map(): returns a new array containing the results of calling a function on each element in the original array.
let numbers = [1, 2, 3, 4, 5];
let squaredNumbers = numbers.map(function(number) {
return number * number;
});
console.log(squaredNumbers); // [1, 4, 9, 16, 25]
#javascript #array #arrayfunctions #function #functions #javascriptarrayfunction #javascriptarrayfunctions #shorts #short #shortsvideo #shortsfeed #shortfeed #shortvideo #shortsyoutube #shortviral #push #pop #shift #unshift #slice #splice #concat #indexof #filter #map #princecheema_official @princecheema_official
-
16:40
Actual Justice Warrior
13 hours agoSydney Sweeney REFUSES To Apologize For Being White
1.89K19 -
1:57:23
MG Show
18 hours agoTrump Makes Announcement; Erika Kirk 1st Interview
16.6K22 -
8:01
MattMorseTV
11 hours ago $0.14 earnedTrump just GUTTED the ENTIRE SYSTEM.
60.2K79 -
20:02
Nikko Ortiz
12 hours agoBlades And Sorcery Is The Ultimate Medieval Fantasy
8.27K6 -
2:12:18
Side Scrollers Podcast
19 hours agoSide Scrollers VTuber TAKE OVER with Kirsche, Rev Says Desu & DarlingStrawb | Side Scrollers
90.9K15 -
29:15
BlabberingCollector
1 day agoHarry Potter X Fortnite, Fans Reee Over Trans Rights, NEW Audiobooks Are OUT, Wizarding Quick Hits
7.8K1 -
1:20:42
The Connect: With Johnny Mitchell
5 days ago $0.29 earnedThe Truth Behind The U.S. Invasion Of Venezuela: Ed Calderon Exposes American Regime Change Secrets
12K6 -
LIVE
Lofi Girl
3 years agolofi hip hop radio 📚 - beats to relax/study to
229 watching -
21:39
TruthStream with Joe and Scott
2 days agoJoe, Scott and Lewis, Censorship and the Nov 8th event in Carlsbad California!
12.1K2 -
22:47
The Pascal Show
1 day ago $0.24 earnedTHEY’RE HIDING EVIDENCE?! Candace Owens EXPOSES Foreign Connection In Charlie Kirk Shooting
38.1K41