JSFiddle - React, Tailwind, and code Playground
by Sahin Deniz
JavaScript
let a = {
b: 1,
c: 2,
d: {
e: 4,
f: 5
}
}
let {b,c,d:{e}} = a;
console.log(e);
by Sahin Deniz
let a = {
b: 1,
c: 2,
d: {
e: 4,
f: 5
}
}
let {b,c,d:{e}} = a;
console.log(e);