Jason Zech
09/26/2023, 3:42 PMif (myArray.includes(fieldValue)) {
But this returns an error. I guess includes() doesn't work in 1.0? Is putting together a long set of || clauses my best bet?
Error I get:
TypeError: Cannot find function includes in object 4633,4634,6928,6954.Anthony OConnor
09/26/2023, 3:49 PMif (myArray.indexOf(fieldValue) >-1) {
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOferictgrubaugh
09/26/2023, 3:50 PMerictgrubaugh
09/26/2023, 3:50 PMJason Zech
09/26/2023, 3:50 PMbattk
09/26/2023, 4:07 PMbattk
09/26/2023, 4:07 PM