JSFiddle - React, Tailwind, and code Playground

by André Kovac

JavaScript

const animals = {
  monkey: '🐒',
  ...1 === 2 ? { panda: '🐼'} : { duck: '🐏' },
}

console.log(animals)