I need to go through multiple arrays and create one new array with all the values from the multiple arrays without duplicate, is there any plugins/quick way I can do this?
var x = {
"12": [3, 4],
"13": [3],
"14": [1, 4]
};
The result should look something like this:
[1,3,4];