gpt4 book ai didi

javascript - 如何使用拼接移除元件?

转载 作者:行者123 更新时间:2023-12-01 00:46:06 26 4
gpt4 key购买 nike

我无法通过这次测试。

结果是未定义

如何解决这个问题?

代码:

mocha.setup('bdd');
var expect = chai.expect;

function removeEnd(arr, n) {
/*
write a program remove n element last of an array
*/
var removedItems= arr.splice(arr.length-n, n);

}

console.log(removeEnd([2, 3, 1, 8, 9, 7], 3));

describe('removeEnd', () => {
it('Remove n elements from the endof an given array', () => {
expect(removeEnd([2, 3, 1, 8, 9, 7], 3)).to.eql([2, 3, 1]);
});
});

mocha.run();

最佳答案

您需要使用slice(),而不是splice():

function removeEnd(arr, n) {
return arr.slice(0, arr.length - n);
}

关于javascript - 如何使用拼接移除元件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57349878/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com