tutorial.eyehunts.com
JavaScript Remove specific element from Array | Example code
Find the index of the array element you want to remove using indexOf, and then remove that index (element) with a splicing method JavaScript.
Rohit