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);
-
1:41:51
Redacted News
3 hours agoBREAKING! NEW DEEP STATE PLANS TO STOP TRUMP EXPOSED BY CONGRESS, BILL GATES VACCINE PLAN | REDACTED
96K273 -
2:19:59
Barry Cunningham
5 hours agoTRUMP DAILY BRIEFING: How Trump Got The Democrat Party To Destroy Itself!
22.9K18 -
LIVE
Akademiks
7 hours agoYSL Case Ends! Yak Gotti found NOT GUILTY! Kendrick Lamar announces STADIUM TOUR! MIA Mad bout Jay z
3,306 watching -
1:19:54
Awaken With JP
7 hours agoPardon Me? - LIES Ep 68
78.1K38 -
5:29:03
Viss
6 hours ago🔴LIVE - Outsmart, Outmaneuver, Outlast The Competition! - PUBG
23.4K8 -
10:23
barstoolsports
5 hours agoHow To Train Like A Pro Football Player | Dana Learns Ep. 5
35.8K2 -
1:22
SLS - Street League Skateboarding
4 hours agoAkio Homma on Instant Skateshop and the future of Japanese Skateboarding - Kona Spotlight
26.1K1 -
21:41
BlackDiamondGunsandGear
4 hours ago $0.16 earnedAnderson Kiger 9mm / Range Review / First Impressions
5.74K2 -
3:37:28
SOLTEKGG
5 hours agoMorning coffee w/ Soltek
15.4K -
1:27:01
Tate Speech by Andrew Tate
6 hours agoEMERGENCY MEETING EPISODE 94 - SOUTH KOREAN BBQ
191K56