JSFiddle - React, Tailwind, and code Playground

by Vladymyr Shevchuk

JavaScript

const obj = {
  0: 'a',
  1: 'b',
  length: 2
};

console.log(Array.from(obj, item => 1 + item));