JSFiddle - React, Tailwind, and code Playground

JavaScript

const weirdObject = {
  'prop-3': 'three',
  '3': 'three'
};

console.log(weirdObject['prop-3']); // => 'three'
console.log(weirdObject['3']);      // => 'three'