xgqfrms™, xgqfrms® : xgqfrms's offical website of GitHub!

ES6 Destructuring Assignment All In One

ES6 & Destructuring Assignment

Axios, vue

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment

https://www.sitepoint.com/es6-destructuring-assignment/

https://javascript.info/destructuring-assignment

Nested object and array destructuring

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment#Nested_object_and_array_destructuring



var metadata = {
    title: 'Scratchpad',
    translations: [
       {
        locale: 'de',
        localization_tags: [],
        last_edit: '2014-04-14T08:43:37',
        url: '/de/docs/Tools/Scratchpad',
        title: 'JavaScript-Umgebung'
       }
    ],
    url: '/en-US/docs/Tools/Scratchpad'
};

var {title: englishTitle, translations: [{title: localeTitle}]} = metadata;

console.log(englishTitle); // "Scratchpad"
console.log(localeTitle);  // "JavaScript-Umgebung"


原文地址:https://www.cnblogs.com/xgqfrms/p/9957932.html