JSFiddle - React, Tailwind, and code Playground

by Edward Tanguay

HTML

<div id="content"></div>

JavaScript

const scores = [34, 65, 23, 54];
html = scores.findIndex(function(element) {
	return element == 23;
});

document.getElementById('content').innerHTML = html;