parameter destructuring code example
Example 1: object destructuring
const book = {
title: 'Ego is the Enemy',
author: 'Ryan Holiday',
publisher: {
name: 'Penguin',
type: 'private'
}
};
const {title: bookName = 'Ego', author, name: {publisher: { name }} = book, type: {publisher: { type }} = book } = book;
Example 2: object destructuring into this
const demo = { nextUrl: 'nextUrl', posts: 'posts' };
const target = {};
({ nextUrl: target.nextUrl, posts: target.communityPosts } = demo);
console.log(target);