JSFiddle - React, Tailwind, and code Playground
HTML
<div id="content"></div>
JavaScript
let html = "";
const customers = [
{
id: 1,
name: "Joe",
selected: false
},
{
id: 2,
name: "Hank",
selected: false
},
{
id: 3,
name: "Wanda",
selected: false
}
];
html = customers.findIndex(function(customer) {
return customer.id == 2;
});
document.getElementById('content').innerHTML = html;