删除JavaScript数组中的前导零?
要删除数组中的前导零,请使用的概念filter()
。以下是我们的输入,其中我们将删除前导零-
[10,0,12,0,0]) [0,0,0,0,0,0,10,12,0]) [12,0,0,1,0,0])
示例
const removeLeadingZero = input => input.filter((lastValue => value => lastValue= lastValue || value) (false) ); console.log(removeLeadingZero([10,0,12,0,0])); console.log(removeLeadingZero([0,0,0,0,0,0,10,12,0])); console.log(removeLeadingZero([12,0,0,1,0,0]));
要运行上述程序,您需要使用以下命令-
node fileName.js.
在这里,我的文件名为demo76.js。
输出结果
这将产生以下输出-
PS C:\Users\Amit\JavaScript-code> node demo76.js [ 10, 0, 12, 0, 0 ] [ 10, 12, 0 ] [ 12, 0, 0, 1, 0, 0 ]