Как удалить элемент из массива

var array = [123, "yee", true];
array.pop(index);
Spotless Shrike