array with multiple equal values code example
Example 1: find unique values between multiple array
var array3 = array1.filter(function(obj) { return array2.indexOf(obj) == -1; });
Example 2: python not equal multiple values
while choice not in [1, 2, 3]: