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);
-
UPCOMING
The Mel K Show
6 hours agoMel K & Corey DeAngelis | The Hopelessly Captured Teacher’s Unions: Biggest Threat to Our Children & Future | 9-6-25
5.14K -
LIVE
Barry Cunningham
4 hours agoPRESIDENT TRUMP ANNOUNCES THE CHIPOCALYPSE! AND I'M HERE FOR IT! (AND MORE NEWS)
5,424 watching -
LIVE
SpartakusLIVE
3 hours agoVerdansk Duos w/ Nicky || Saturday Spartoons - Variety Later?!
318 watching -
LIVE
SavageJayGatsby
1 day agoSpicy Saturday | Let's Play: Grounded
72 watching -
13:37
Exploring With Nug
7 hours ago $1.41 earnedTrying to Uncover Secrets in St Augustine’s Waters Missing Person Search!
6.27K1 -
LIVE
Mally_Mouse
1 day ago🔥🍺Spicy HYDRATE Saturday!🍺🔥-- Let's Play: Grounded
66 watching -
24:09
MYLUNCHBREAK CHANNEL PAGE
1 day agoDams Destroyed The Ozarks
60.6K27 -
1:32:54
Jeff Ahern
5 hours ago $24.39 earnedThe Saturday Show with Jeff Ahern
83.3K9 -
LIVE
TheManaLord Plays
7 hours agoMANA SUMMIT - DAY 1 ($10,200+) | BANNED PLAYER SMASH MELEE INVITATIONAL
205 watching -
LIVE
Major League Fishing
2 days agoLIVE Tackle Warehouse Invitationals Championship, Day 2
126 watching