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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!