JSFiddle - React, Tailwind, and code Playground
by budyniowski
JavaScript
var array = ['apple', 'banana', 'orange'];
console.log(array)
var index = array.indexOf('banana');
if (index > -1) {
array.splice(index, 1);
}
console.log(array);
by budyniowski
var array = ['apple', 'banana', 'orange'];
console.log(array)
var index = array.indexOf('banana');
if (index > -1) {
array.splice(index, 1);
}
console.log(array);