Answers for "ES5 Assigning Variables to Object Properties"

0

ES5 Assigning Variables to Object Properties

var obj = {
  numbers: {
    a: 1,
    b: 2
  }
};

const {a, b} = obj.numbers
Posted by: Guest on October-08-2021

Code answers related to "ES5 Assigning Variables to Object Properties"

Code answers related to "Javascript"

Browse Popular Code Answers by Language