JSFiddle - React, Tailwind, and code Playground
by apaichon
HTML
<script>
function search(){
var str = "Please locate where 'locate' occurs!";
var pos = str.indexOf("locate");
//console.log(pos);
alert(pos);
}</script>
<button onclick='search();'></button>