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);
-
28:39
Afshin Rattansi's Going Underground
1 day agoDonald Trump’s Gaza Peace Plan: A Pivotal Moment or Farce? (Palestinian Deputy Foreign Minister)
7611 -
29:09
Stephen Gardner
7 hours ago🚨Trump DECLARES WAR on TERRORIST LEFT!
7.89K32 -
24:34
HaileyJulia
8 days agoThis Christian Morning Routine Changed Everything for Me
30 -
23:07
DeVory Darkins
5 hours ago $8.75 earnedDemocrats EMBARRASSED after No Kings Protest officially FLOPS
12.3K120 -
2:45:26
Barry Cunningham
5 hours agoV.P.J.D. VANCE AND SEC OF WAR PETE HEGSETH GIVE REMARKS AT U.S. MARINES 250TH ANNIVERSARY
104K13 -
LIVE
Tundra Tactical
6 hours ago $7.01 earned🛑{LIVE NOW!!} The Great Tundra Nation Gun Show!!!! Presented By MGS Trade School
714 watching -
4:35:07
Right Side Broadcasting Network
4 days agoLIVE: VP Vance Attends the U.S. Marine Corps 250th Anniversary Celebration - 10/18/25
56.8K41 -
LIVE
Mally_Mouse
22 hours ago🔥🍺Spicy HYDRATE Saturday!🍺🔥-- Let's Play: Prison Life 2
101 watching -
2:57:52
Pepkilla
4 hours agoBattlefield 6 SMG Camo Grind
7.36K1 -
14:22
Exploring With Nug
11 hours ago $4.29 earnedThe River Exposed a Secret That No One Was Supposed to See!
41.4K4