我们需要编写一个包含数字数组的JavaScript函数。函数应选择两个不同索引(连续或非连续)的对,它们的和也存在于数组中。
以下是代码-
const arr = [1, 3, 5, 6, 8, 9]; const findPair = (arr = []) => { let count = 0; for(let i = 0; i < arr.length; i++){ for(let j = 0; j < arr.length; j++){ if(i === j){ break; }; let sum = arr[i] + arr[j]; if(arr.includes(sum)){ return [arr[i], arr[j]]; }; }; }; return []; }; console.log(findPair(arr));
输出结果
以下是控制台上的输出-
[5, 1]