js in_array

JavaScript
var a = [1, 2, 3];
a.includes(2); // true 
a.includes(4); // false
Source

Also in JavaScript: