Question: In JavaScript , create a function that will take two arguments, array named MyArray and data type X. The function should count only the integers
In JavaScript, create a function that will take two arguments, array named MyArray and data type X. The function should count only the integers that are smaller than X.
The output is the number of elements smaller than X.
Example of the code:
function CountSmallerThanX (MyArray) {
// Insert code here;
}
CountSmallerThanX ([2,16,3,5,67,21], 22);
Output: 5
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
