rename variable:
https://javascript.info/destructuring-assignment
https://javascript.info/destructuring-assignment
let options = {
title: "Menu",
width: 100,
height: 200
};
// { sourceProperty: targetVariable }
let {width: w, height: h, title} = options;
Comments
Post a Comment