Node.js examples for Array:Array Operation
Check if array has a key
Array.prototype.hasKey = function(key, label){ return this.filter(function(e){ return e[key] === label; }).length;/*from w ww.j av a 2s. c o m*/ }