Skip to content

Instantly share code, notes, and snippets.

@rohit012
Last active February 18, 2018 23:02
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
var bodyObj = {
height: 16,
width: 9,
breadth: 20;
};
//without destructuring
var height = bodyObj.height;
var width = bodyObj.width;
var breadth = bodyObj.breadth;
//with destructuring
let { height, width, breadth } = bodyObj;
// rename variable with destructuring
let { height: myHeight } = bodyObj; // will result in creating myHeight with value bodyObj.height in readonly mode
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment