JSFiddle - React, Tailwind, and code Playground
JavaScript
const obj = ['uno', 'due', 'tre']
console.log([...obj.entries()])
// transpiled by babel with the loose flag
console.log([].concat(obj.entries()))
const obj = ['uno', 'due', 'tre']
console.log([...obj.entries()])
// transpiled by babel with the loose flag
console.log([].concat(obj.entries()))