I have this two array in Javascript
var array1 = [
              ["Tech & Digital", 124],
              ["Stationery", 100]
             ]
var array2 = [
              ["Gift Item", 125],
              ["Stationery", 100]
             ]
I want to merge this 2 array with unique value as follows,
            [
              ["Tech & Digital", 124],
              ["Stationery", 100],
              ["Gift Item", 125]
             ]
I tried concat function, but it's not working as expected.
 
     
     
    