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);
-
LIVE
Kim Iversen
3 hours agoWhat Happens If You Refuse to Vaccinate Your Kids? | Days After CHD Sues Meta, Zuckerberg Says ‘No More Censorship’, Coincidence?
2,281 watching -
LIVE
Nobodies Live
1 hour agoNobodies Rumble TEST STREAM
389 watching -
1:09:33
Glenn Greenwald
4 hours agoThe View From Tehran: Iranian Professor On The Middle East, Israel, Syria, And More | SYSTEM UPDATE #385
7.65K23 -
LIVE
Space Ice
4 hours agoSpace Ice & Redeye: Steven Seagal's True Justice Feat. Sensei Seagal
120 watching -
LIVE
The StoneZONE with Roger Stone
2 hours agoRobert Davi on The Goonies & Fighting for Trump | Stone for Governor of Canada? | The StoneZONE
405 watching -
LIVE
b0wser
2 hours agoIs Chivalry Dead? | Get Off My Lawn Gaming | b0wser did it
536 watching -
LIVE
The Jimmy Dore Show
2 hours agoTrump TROLLS Newsom Over LA Fires! Zuckerberg & Facebook GIVE UP on Fact Checking!
9,994 watching -
LIVE
Dr Disrespect
9 hours ago🔴LIVE - DR DISRESPECT - DELTA FORCE - ATTACK AND EXTRACT
2,799 watching -
1:15:19
Dr. Drew
6 hours agoMy Pasadena Home Is Surrounded By CA Wildfires w/ OC Fire Chief Brian Fennessy & LA's John Phillips – Ask Dr. Drew
15.4K9 -
LIVE
Melonie Mac
3 hours agoGo Boom Live Ep 33!
252 watching