10 lines
228 B
JavaScript
10 lines
228 B
JavaScript
|
function remove_array_element(array, n)
|
||
|
{
|
||
|
var index = array.indexOf(n);
|
||
|
if (index > -1) {
|
||
|
array.splice(index, 1);
|
||
|
}
|
||
|
return array;
|
||
|
}
|
||
|
|
||
|
console.log(remove_array_element([2, 5, 9, 6], 5));
|