Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
</body>
</html>
 
var fruits = ['apple', 'orange', 'banana', 'pear'];
fruits.splice(3, 0, 'kiwi');
console.log(fruits);
// ["apple", "orange", "banana", "kiwi", "pear"]
var cars = ['porsche', 'ferrari', 'lambo', 'maserati'];
cars.splice(2, 1);
console.log(cars);
// ["porsche", "ferrari", "maserati"]
var planets = ['mars', 'saturn', 'jupiter', 'pluto'];
planets.splice(3, 1, 'uranus', 'mercury');
console.log(planets);
// ["mars", "saturn", "jupiter", "uranus", "mercury"]
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
ImpressiveWebspro
0viewers