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
Misfits Mania
2 days agoMISFITS MANIA: Weigh-In & Award Ceremony
1,243 watching -
LIVE
Graham Allen
1 hour agoLive From AMFEST 2025: Day 2
1,615 watching -
LIVE
LFA TV
8 hours agoLIVE & BREAKING NEWS! | FRIDAY 12/19/25
3,755 watching -
1:01:55
VINCE
3 hours agoIs This Why They Were Hiding The Evidence? | Episode 192 - 12/19/25 VINCE
170K106 -
LIVE
Badlands Media
7 hours agoBadlands Daily: 12/19/25
3,370 watching -
14:45
Bearing
3 hours agoFROGAN Gets BODIED 💥 Caleb Hammer, Asmongold + the $20k Rejection 💰
10.7K11 -
1:10:23
Graham Allen
3 hours agoTensions ERUPT At AMFEST, Is Our Party Too Far Gone?
118K538 -
LIVE
Caleb Hammer
2 hours agoThis Has Never Happened Before | Financial Audit
269 watching -
LIVE
The Big Migâ„¢
3 hours agoTrump Drops Bombshell: Weed Reclassified to Schedule III
2,687 watching -
23:17
The Car Edition Ltd
8 hours ago $0.69 earnedFord Fiesta 1.4 Titanium Full Overhaul | Suspension, Brakes, Tyres & Engine Repair - The Car Edition
12.4K