jquery not in array code example
Example 1: jquery check if value is in array
$.inArray( 5 + 5, [ "8", "9", "10", 10 + "" ] );
Example 2: js inarray
array.includes(élémentRecherché)
array.includes(élémentRecherché, indiceDépart)
$.inArray( 5 + 5, [ "8", "9", "10", 10 + "" ] );
array.includes(élémentRecherché)
array.includes(élémentRecherché, indiceDépart)