JSFiddle - React, Tailwind, and code Playground

by Csaba Hellinger

JavaScript

const test = () => {
  const one = { a:1, b:2, c:3 };   
  
  
  
  const { one: x { a, b },   = { one };
  return x;
}

console.log(test());