<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
</head>
<body>
<script type="text/javascript">
const _delete = (array,index) => {
// slice(start, end);包含start,不包含end
// 返回的是删除元素,而不是被删除之后的元素
// return array.slice(index, index + 1);
// 正解
return array.filter((itme,i) => i !== index);
}
</script>
</body>
</html>
<html>
<head>
<meta charset=utf-8>
</head>
<body>
<script type="text/javascript">
const _delete = (array,index) => {
// slice(start, end);包含start,不包含end
// 返回的是删除元素,而不是被删除之后的元素
// return array.slice(index, index + 1);
// 正解
return array.filter((itme,i) => i !== index);
}
</script>
</body>
</html>