Need help with this problem on Zybook Labs: Section 6.17 LAB: JavaScript arrays. Code: function divideArray(nums) { for (var i = 0; i


Need help with this problem on Zybook Labs: Section 6.17 LAB: JavaScript arrays.


Code:


function divideArray(nums) {
for (var i = 0; i < nums.length;="" i++)="">
if (nums[i] % 2 === 0) {
nums.push(evenNums);
}


else if (nums[i] % 2 !== 0) {
nums.push(oddNums);
}


/*
else {
console.log("none");
}
*/
}
};


let nums = [];
let evenNums = [];
let oddNums = [];
divideArray(nums);


evenNums.sort();
console.log("Even Numbers:");
console.log(evenNums);


oddNums.sort();
console.log("Odd Numbers:");
console.log(oddNums);


6.17 LAB: JavaScript arrays<br>Write the function divideArray() in script.js that has a single numbers parameter containing an array of integers. The function should<br>divide numbers into two arrays, evenNums for even numbers and oddNums for odd numbers. Then the function should sort the two arrays<br>and output the array values to the console.<br>Ex: The function call:<br>let nums<br>[4, 2, 9, 1, 8];<br>divideArray (nums);<br>produces the console output:<br>Even numbers:<br>4<br>8.<br>Odd numbers:<br>1<br>9.<br>The program should output

Extracted text: 6.17 LAB: JavaScript arrays Write the function divideArray() in script.js that has a single numbers parameter containing an array of integers. The function should divide numbers into two arrays, evenNums for even numbers and oddNums for odd numbers. Then the function should sort the two arrays and output the array values to the console. Ex: The function call: let nums [4, 2, 9, 1, 8]; divideArray (nums); produces the console output: Even numbers: 4 8. Odd numbers: 1 9. The program should output "None" if no even numbers exist or no odd numbers exist. Ex: The function call: let nums [4, 2, 8]; divideArray (nums); produces the console output: Even numbers: 4 8. Odd numbers: None Hints: Use the push() method to add numbers to the evenNums and oddNums arrays. Supply the array sort() method a comparison function for sorting numbers correctly. To test your code in your web browser, call divideArray() from the JavaScript console.

Jun 07, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here