Node.js examples for Array:Array Value
Check if an array contains a value
Array.prototype.include = function(value){ return(this.indexOf(value) != -1); };