通过比较 Javascript 中的 2 个数组来查找丢失的元素 [英] Find missing element by comparing 2 arrays in Javascript

查看:48
本文介绍了通过比较 Javascript 中的 2 个数组来查找丢失的元素的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

出于某种原因,我在解决这个问题时遇到了一些严重的困难.我需要这个 JS 函数,它接受 2 个数组,比较 2,然后返回缺少元素的字符串.例如.找到上一个数组中存在的 currentArray 中缺少的元素.

For some reason I'm having some serious difficulty wrapping my mind around this problem. I need this JS function that accepts 2 arrays, compares the 2, and then returns a string of the missing element. E.g. Find the element that is missing in the currentArray that was there in the previous array.

function findDeselectedItem(CurrentArray, PreviousArray){

var CurrentArrSize = CurrentArray.length;
var PrevousArrSize = PreviousArray.length;

// Then my brain gives up on me...
// I assume you have to use for-loops, but how do you compare them??

return missingElement;

}

提前致谢!我不是在要求代码,但即使只是朝着正确的方向推动或提示可能会有所帮助...

Thank in advance! I'm not asking for code, but even just a push in the right direction or a hint might help...

推荐答案

这应该有效.您还应该考虑数组元素实际上也是数组的情况.indexOf 可能不会按预期工作.

This should work. You should also consider the case where the elements of the arrays are actually arrays too. The indexOf might not work as expected then.

function findDeselectedItem(CurrentArray, PreviousArray) {

   var CurrentArrSize = CurrentArray.length;
   var PreviousArrSize = PreviousArray.length;

   // loop through previous array
   for(var j = 0; j < PreviousArrSize; j++) {

      // look for same thing in new array
      if (CurrentArray.indexOf(PreviousArray[j]) == -1)
         return PreviousArray[j];

   }

   return null;

}

这篇关于通过比较 Javascript 中的 2 个数组来查找丢失的元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆