JSFiddle - React, Tailwind, and code Playground

by Robodude

JavaScript

const method = {
	a: "hello",
  b: "world"
}

var { a, b } = method

console.log(a, b)