DEV Community

Discussion on: An easy way to create a customize dynamic table in react js

Collapse
 
abdulbasit313 profile image
Abdul Basit
let student = {
  "roll no" : 654321,
  "first name" : "John" 
  } 

const {"roll no":  id,  "first name": name} = student

console.log(id, name)

Let me know if it helps...