我们需要编写一个包含一组文字的JavaScript函数。该函数应反转数组而不更改数组中存在的“#”的索引,如以下示例所示:
数组[18,-4,'#',0,8,'#',5]应该返回-
[5, 8, "#", 0, -4, "#", 18]
在此,数字应颠倒,但在保持相同索引的情况下应排除“#”。
const arr = [18, -4, '#', 0, 8, '#', 5]; const arr1 = [18, -4, 0, '#', 8, '#', 5]; const specialReverse = (arr = []) => { let removed = arr.reduce((acc, val, ind) => { return val === '#' ? acc.concat(ind) : acc; }, []); let reversed = arr.filter(val => val !== '#').reverse(); removed.forEach(el => reversed.splice(el, 0, '#')); return reversed; }; console.log(specialReverse(arr)); console.log(specialReverse(arr1));
输出结果
控制台中的输出将是-
[ 5, 8, '#', 0, -4, '#', 18 ] [ 5, 8, 0, '#', -4, '#', 18 ]