Looking for a way to create a function that will return a number under 100? Check out the code snippet below:
const myArray = ['hello', 3, true, 18, 10,, 99 'ten', false]
const isLessThan100 = (array) => {
// Insert solution here
}
I believe the filter method might be useful in this case, but unsure on how to specifically filter for a number less than 100 and not a string.
Any help would be greatly appreciated!