not in list typescript code example
Example 1: typescript check if element in array
your_array.includes(the_element)
Example 2: typescript array
let list: number[] = [1, 2, 3];
your_array.includes(the_element)
let list: number[] = [1, 2, 3];