Is there a simple way or plugin that can help me combine values from multiple arrays into one new array without duplicates?
var x = {
"12": [3, 4],
"13": [3],
"14": [1, 4]
};
The resulting array should only contain unique values:
[1, 3, 4];