JSFiddle - React, Tailwind, and code Playground

by Jussia

JavaScript

var myFish = ['angel', 'clown', 'mandarin', 'sturgeon'];
var removed = myFish.splice(1, 1);
console.log('removed', removed)
console.log('myFish', myFish)