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
Side Scrollers Podcast
2 hours agoAsmongold/DSP RESPONSE + Kaceytron’s Life IMPLODES + Lunduke Gets Threats + More | Side Scrollers
2,704 watching -
2:22:52
Steven Crowder
4 hours agoDonald Vs. Ilhan: Trump Boots Somalis and The Meltdown is Glorious
331K232 -
LIVE
Sean Unpaved
2 hours agoIs Lane Kiffin Staying At Ole Miss Or LEAVING For LSU? | UNPAVED
131 watching -
29:48
The White House
2 hours agoPresident Trump and The First Lady Participate in the Thanksgiving Turkey Pardoning
12.9K12 -
LIVE
The Charlie Kirk Show
1 hour agoMark Kelly Court Martial + AI Embargo + Thanksgiving | Davis, Federer, Newcombe | 11.25.2025
3,460 watching -
53:20
The Rubin Report
2 hours agoLara Trump Destroys Bill Maher’s Narrative w/ Facts in 1 Minute
26K33 -
LIVE
TheAlecLaceShow
1 hour agoGuest: Rep. Tim Burchett | Ukraine Russia Peace Deal | Trump SLAMS Seditious 6 | The Alec Lace Show
50 watching -
LIVE
LFA TV
15 hours agoLIVE & BREAKING NEWS! | TUESDAY 11/25/25
2,684 watching -
1:08:44
VINCE
5 hours agoThe Deep State Strikes Back! (Guest Host Shawn Farash) | Episode 176 - 11/25/25 VINCE
205K128 -
2:14:00
Benny Johnson
3 hours agoIt's All True, The 2024 Election Was Ready To Be Rigged. The REAL Story of How Trump-Elon STOPPED It
64K68