Question: Function 4: Find Min and Max function four array) Create a JavaScript function that meets the following requirements: Receives an integer array as a parameter

Function 4: Find Min and Max function four array) Create a JavaScript function that meets the following requirements: Receives an integer array as a parameter The function transverses the array to determine the minimum and maximum values in the array. Displays the calculated information as illustrated below: . ************** STEP 4 ************** Calling four([-8,-1,-87, -14, -81, -74, -20, -86, -61, -10]); The minimum value in the array is: -87, the maximum value is - 1 Function 5: Count Occurrences function five (string, char) Create a JavaScript function that meets the following requirements: . O Accepts two input parameters, a string and a character letter. The function determines the number of occurrences of the character in the string. Displays the result to the console as illustrated below. ******* STEP 5 ********** Calling _five("map", p); The word map has 1 occurrences of the character p
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
