JSFiddle - React, Tailwind, and code Playground

by Julian Garcia Castillo

HTML

<h1>
hola
</h1>

JavaScript

console.log('hello')
var items = [
{id:1, title: 'ed'},
{id:2, title: 'ere'},
{id:3, title: 'csd'},

]
var item = items[Math.floor(Math.random() * items.length)];

items.splice(0, 1)

alert(items[0].title)