Node.js examples for Array:Associate Array
Does associative array item exist?
Array.prototype.Exists = function(key) { var type = typeof(this[key]); return (type != 'undefined' && type != 'function'); }