📌  相关文章
📜  从数组中的特定索引弹出元素 - C# 代码示例

📅  最后修改于: 2022-03-11 14:48:48.161000             🧑  作者: Mango

代码示例4
const items = ['a', 'b', 'c', 'd', 'e', 'f']
const i = 2
const filteredItems = items.slice(0, i).concat(items.slice(i + 1, items.length))
// ["a", "b", "d", "e", "f"]