JSFiddle - React, Tailwind, and code Playground
by Diana Lemen
JavaScript
const b = {l:'2', p:'5'};
const c = {n:'5', k: {n:'7'}}
const {n:l, k:p} = c;
const h = {l,p}
console.log(h)
by Diana Lemen
const b = {l:'2', p:'5'};
const c = {n:'5', k: {n:'7'}}
const {n:l, k:p} = c;
const h = {l,p}
console.log(h)