Answers for "check if element exists in array jquery"

2

jquery check value exists in array

if ($.inArray('example', myArray) != -1)
{
  // found it
}
Posted by: Guest on June-15-2020
0

jquery check if value is in array

$.inArray( 5 + 5, [ "8", "9", "10", 10 + "" ] );
Posted by: Guest on November-13-2020

Code answers related to "check if element exists in array jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language