从数组的结尾和开头交换某些元素-JavaScript

我们需要编写一个JavaScript函数,该函数接受Numbers和一个数字数组,例如n(n必须小于或等于数组的长度)。并且我们的函数应该从数组末尾开始将第k个元素替换为第n个元素。

示例

以下是代码-

const arr = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
const swapNth = (arr, k) => {
   const { length: l } = arr;
   let temp;
   const ind = k-1;
   temp = arr[ind];
   arr[ind] = arr[l-k];
   arr[l-k] = temp;
};
swapKth(arr, 4);
console.log(arr);
swapNth(arr, 8);
console.log(arr);

输出结果

这将在控制台中产生以下输出-

[
   0, 1, 2, 6, 4,
   5, 3, 7, 8, 9
]
[
   0, 1, 7, 6, 4,
   5, 3, 2, 8, 9
]