JSFiddle - React, Tailwind, and code Playground

by Avi Algaly

JavaScript

var array = ["zero", "one", "two", "three", "four"];
const message = array.findIndex((itm) => itm === "one");
console.log(message);
array.splice(2, 1);

console.log(array)
console.log([].length)