Every numbers must be less than 100
GIven an array, return true if every element are < 100.
Otherwise false.
Sample Code:
function hundredLess(arr) {
// Enter your logic here...
}
Examples:
Input: [-1,0,1,2,99.9]
Output: true
Explanation: Every number in the array are less than 100.
Input: [-1,0,1,2,999.9]
Output: false
Explanation: At least one of the elements is not less than 100.