Answers for "return uncommon from two arrays js"

1

find unique values between multiple array

var array3 = array1.filter(function(obj) { return array2.indexOf(obj) == -1; });
Posted by: Guest on May-01-2020
0

return uncommon from two arrays js

let array = [1,2,3,4,5,6,78,9];

function except(array,excluded){
let newArr,temp,temp1;

      check1=array.filter(function(value) 
                {
                  return excluded.indexOf(value) == -1; 

                });

      check2=excluded.filter(function(value) 
                {
                  return array.indexOf(value) == -1; 

                });

    output=check1.concat(check2);


    return output;

  }


except(array,[1,2])

//so the output would be => [ 3, 4, 5, 6, 78, 9 ]
Posted by: Guest on June-01-2020

Code answers related to "return uncommon from two arrays js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language