Javascript Array includes(entry)
Array.prototype.includes = function(entry) { return this.indexOf(entry) !== -1; };