method Float16Array.filterFloat16Array.filter(predicate: (value: number,index: number,array: Float16Array,) => any,thisArg?: any,): Float16ArrayDeprecatedReturns the elements of an array that meet the condition specified in a callback function. Parameterspredicate: (value: number,index: number,array: Float16Array,) => anyA function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array. optionalthisArg: anyAn object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value. Return TypeFloat16Array