I'm looking to remove a specific item from an array called myItemsList. Let's say the first array in myItemsList contains only one item, which is "First Item," and I want to delete it.
myItemsList = [["First item"],["2"],["3"],["4"],["5"],["6"],["7"],["8"],["9"],["10"],["11","12"],["13"],["14"]]; // Below is the array of arrays defined in my ts file
delete(myitems) {
} // This function is meant to remove items.