Node.js examples for Array:Array Value
Check if an array includes a value
"use strict";// w w w . ja va2 s . c o m if (!Array.prototype.includes) { Array.prototype.includes = function (value) { return this.indexOf(value) > -1; }; }