Contact: aviboots(AT)netvision.net.il
38,901 questions
50,606 answers
573 users
// typedarray.includes(searchElement[, fromIndex]); var arr = new Uint8Array([10, 7, 13, 14, 31, 100]); document.write(arr.includes(8) + "<br />"); document.write(arr.includes(7) + "<br />"); /* run: false true */