Premium Only Content
JavaScript DESTRUCTURING in 8 minutes! 💥
00:00:00 intro
00:00:21 swap the values of two variables
00:01:11 swap two elements in an array
00:02:34 assign array elements to variables
00:03:47 extract values from objects
00:06:11 destructuring in function parameters
// destructuring = extract values from arrays and objects,
// then assign them to variables in a convenient way
// [] = to perform array destructuring
// {} = to perform object destructuring
// --------- EXAMPLE 1 ---------
// SWAP THE VALUE OF TWO VARIABLES
let a = 1;
let b = 2;
[a, b] = [b, a];
console.log(a);
console.log(b);
// --------- EXAMPLE 2 ---------
// SWAP 2 ELEMENTS IN AN ARRAY
const colors = ['red', 'green', 'blue', 'black', 'white'];
[colors[0], colors[4]] = [colors[4], colors[0]]
console.log(colors);
// --------- EXAMPLE 3 ---------
// ASSIGN ARRAY ELEMENTS TO VARIABLES
const [firstColor, secondColor, thirdColor, ...extraColors] = colors;
console.log(firstColor);
console.log(secondColor);
console.log(thirdColor);
console.log(extraColors);
// --------- EXAMPLE 4 ---------
// EXTRACT VALUES FROM OBJECTS
const person1 = {
firstName: 'Spongebob',
lastName: 'Squarepants',
age: 30,
job: "Fry cook",
};
const person2 = {
firstName: 'Patrick',
lastName: 'Star',
age: 34
};
const {firstName, lastName, age, job="Unemployed"} = person2;
console.log(firstName);
console.log(lastName);
console.log(age);
console.log(job);
// --------- EXAMPLE 5 ---------
// DESTRUCTURING IN FUNCTION PARAMETERS
function displayPerson({ firstName, lastName, age, job="Unemployed" }) {
console.log(`name: ${firstName} ${lastName}`);
console.log(`age: ${age}`);
console.log(`job: ${job}`);
}
displayPerson(person1);
displayPerson(person2);
-
2:00:37
Badlands Media
14 hours agoBaseless Conspiracies Ep. 164: Pipe Bombers, Psyops, and the Recycling of Fear
144K52 -
LIVE
Drew Hernandez
1 day agoBEN SHAPIRO GETS COOKED AT AMFEST & DOJ EPSTEIN FILES RELEASE CIRCUS
2,110 watching -
7:36:57
SpartakusLIVE
10 hours agoMAXIMIZED and MOTIVATED this MONDAY w/ Muscle Monster MASCULINITY
168K4 -
11:00:20
GritsGG
14 hours ago#1 Warzone Victory Leaderboard! 270+ Ws !
36K1 -
4:56:56
a12cat34dog
8 hours agoTHIS WAS A HIDDEN GEM :: Watch Dogs :: HACKIN' EVERYTHING & SHOOTING SH*T {18+}
19.1K3 -
2:46:02
Laura Loomer
8 hours agoEP164: TPUSA's Identity Crisis: The Big Tent & Islam Dilemma
50.4K40 -
3:23:23
VapinGamers
8 hours ago $1.00 earnedOff the Grid - It's Been A Hot Min. Playin with Rando's - !rumbot !music
15.3K2 -
3:03:34
PixelRealms
7 hours ago $3.62 earnedPlaying Enshrouded for the Final night of the Christmas Cheer-A-Thon!
21.6K1 -
55:56
Dad Saves America
11 hours ago $3.88 earnedMarxist Judges. Woke Coaches. High School Debate—Hijacked: The Death of Debate - Pt 5
33.7K6 -
2:35:21
CassaiyanGaming
6 hours ago🟣LIVE - CASSAIYAN - The Grinch: Christmas Adventures Game
9.29K