Here you can find the source of diff(array)
Array.prototype.diff = function(array) { return this.filter(function(e){ return (array.indexOf(e) < 0 ); });/*from w ww . ja va 2 s. c om*/ } //console.log(["A","B","C"].diff(["D","B"]));
Array.prototype.diff = function(a) { return this.filter(function(i) {return a.indexOf(i) < 0;}); }; Array.prototype.contains = function(obj) { var i = this.length; while (i--) { if (this[i] === obj) { return true; return false; }; function sym(args) { var a = args[0].diff(args[1]).concat(args[1].diff(args[0])); var b = args[0].filter(function(n) { return args[1].indexOf(n) != -1; }); return a; sym([1, 2, 3], [5, 2, 1, 4]);
function getSrv(name) { return angular.element(document.body).injector().get(name); function isNumeric(n) { return !isNaN(parseFloat(n)) && isFinite(n); function inArray(needle, haystack) { var length = haystack.length; for(var i = 0; i < length; i++) { ...
Array.prototype.diff = function (a, k) { return this.filter (function (i) { return a.column (k).indexOf (eval ("i." + k)) < 0; }); };
Array.prototype.diff = function (arr) { var mergedArr = this.concat(arr); return mergedArr.filter(function (e) { return mergedArr.indexOf(e) === mergedArr.lastIndexOf(e); }); };
Array.prototype.diff = function(array){ return this.filter(function(i) { if(array){ return !(array.indexOf(i) > -1) })
Array.prototype.diff = function (init) { init = init || 0; var g = this; return this.reduce(function(prev,cur) { prev.push(cur - (prev.length > 0 ? g[prev.length-1] : init)); return prev; },[]);
Array.prototype.diff = function(part) { return this.filter(function(element) {return part.indexOf(element) < 0;}); };
Array.prototype.diff1 = function(compare) { return this.filter(function(elem) {return elem!=compare;})
function getJSON(yourUrl) { var Httpreq = new XMLHttpRequest(); Httpreq.open("GET", yourUrl, false); Httpreq.send(null); return Httpreq.responseText; Array.prototype.diffArrays = function(a) { return this.filter(function(i) { return a.indexOf(i) < 0; ...