Question

In: Computer Science

Using Javascript, complete the following /************************************************************************** * * Array callback filtering * **************************************************************************/ /** * Write...

Using Javascript, complete the following

/**************************************************************************
*
* Array callback filtering
*
**************************************************************************/

/**
* Write and export a function named "everyEven" which takes an array and a test
* function for checking individual elements of the array. The "everyEven"
* function should test the even elements of the array and return true only
* if at least one of the even elements passes the test.
*
* @param arr An array whose even elements should be tested
* @param test A function which takes as input a single element of the array
* and returns true or false, such that true means the element
* passed the test and false means it failed
* @return boolean true if at every even-indexed element passes the test
* function
*
* Example usage:
* everyEven([1, 5, 1, 0, 1], x => x === 1) <-- returns true
* everyEven([1, 1, 0, 1, 1], x => x === 1) <-- returns false
*/
export const everyEven = (arr, test) => {
  
};


/**
* Write and export a function named "someEven" which takes an array and a test
* function for checking individual elements of the array. The "someEven"
* function should test the even elements of the array and return true only
* if at least one of the even elements passes the test.
*
* @param arr An array whose even elements should be tested
* @param test A function which takes as input a single element of the array
* and returns true or false, such that true means the element
* passed the test and false means it failed
* @return boolean true if at least one even-indexed element passes the
* test function
*
* Example usage:
* someEven([4, 3, 2, 1, 0], x => x === 3) <-- returns false
* someEven([1, 0, 1, 0, 1], x => x === 0) <-- returns false
* someEven([1, 1, 1, 1, 0], x => x === 0) <-- returns true
* someEven([0, 0, 0, 0, 0], x => x === 0) <-- returns true
*/
export const someEven = (arr, test) => {

};


/**
* Write and export a function named "filter" which takes an array and a test
* function for checking individual elements of the array. The "filter"
* function should test the elements of the array and return true only
* if all of the odd elements pass the test.
*
* @param arr An array whose elements should be tested
* @param test A function which takes as input a single element of the array
* and returns true or false, such that true means the element
* passes the test and false means it fails the test
* @return {fail: [], pass: []} an object with two keys: "pass" and "fail". The value
* of "pass" should be an array containing all the elements of arr
* which passed the test. The value of "fail" should be an array
* containing all the elements of arr which failed the test.
*
* Example usage:
* filter(['yes', 'nope', 'maybe', 'yellow'], x => x[0] === 'y')
* --> { pass: ['yes', 'yellow'], fail: ['nope', 'maybe'] }
* filter([1, 90, 5, 31], x => x % 2 === 1)
* --> { pass: [1, 5, 31], fail: [90] }
*/
export const filter = (arr, test) => {

};


/**
* Write and export a function named "allEvensAreOdd" which takes as input an
* array and returns true only if all of the even elements in the array are
* odd numbers. Use the "everyEven" function in this function.
*/
export const allEvensAreOdd = (arr) => {

};


/**
* Write and export a function named "anEvenIsOdd" which takes as input an
* array and returns true if at least one of the even-indexed elements in the
* array is an odd number. Use the "someEven" function in this function.
*/
export const anEvenIsOdd = (arr) => {

};


/**
* Write and export a function named "hasExactly" which takes an array, a test
* function for checking individual elements of the array, and a number n.
* The "hasExactly" function should return true only if exactly n elements
* pass the test. You must use the filter function.
*/
export const hasExactly = (arr, test, n) => {

};

Solutions

Expert Solution

export const everyEven = (arr, test) => {

//for each even index

for(let i = 0; i < arr.length; i+=2){

//get the function value

if(!test(arr[i])){

return false;

}

}

return true;

};

export const someEven = (arr, test) => {

//for each even index

for(let i = 0; i < arr.length; i+=2){

//get the function value

if(test(arr[i])){

return true;

}

}

return false;

};

export const filter = (arr, test) => {

let result = {pass:[], fail :[]};

//for each even index

for(let i = 0; i < arr.length; i++){

//get the function value

if(test(arr[i])){

result.pass.push(arr[i]);

}

else{

result.fail.push(arr[i]);

}

}

return result;

};

export const allEvensAreOdd = (arr) => {

return everyEven(arr, x => x%2==1);

}

export const anEvenIsOdd = (arr) => {

return someEven(arr, x => x%2==1);

}

export const hasExactly = (arr, test, n) => {

let result = filter(arr, test);

if(result.pass.length == n){

return true;

}

else{

return false;

}

};


Related Solutions

using javascript and without using javascript sort. Sort an array from lowest to highest const x...
using javascript and without using javascript sort. Sort an array from lowest to highest const x = [201,28,30,-5] ​function sort(array){ // put your code here return //the answer } ​ sort(x) // output: [-5,28,30,201]
C++ Write the code to implement a complete binary heap using an array ( Not a...
C++ Write the code to implement a complete binary heap using an array ( Not a vector ). Code for Max heap. Implement: AddElement, GetMax, HeapSort, ShuffleUp, ShuffleDown, etc Set array size to 31 possible integers. Add 15 elements 1,3,27,22,18,4,11,26,42,19,6,2,15,16,13 Have a default constructor that initializes the array to zeros.. The data in the heap will be double datatype. PART 2 Convert to the program to a template, test with integers, double and char please provide screenshots thank you so...
Write a function (in Javascript) called longestMorseCodeWords which takes in an array of strings. The output...
Write a function (in Javascript) called longestMorseCodeWords which takes in an array of strings. The output of longestMorseCodeWords should be an array of the strings that were passed in, but ordered by the length of their Morse Code equivalent in descending order. If the length of Morse Code is equal, order the words alphabetically.For convenience, the full table for the 26 letters of the English alphabet is given below: [".-","-...","-.-.","-..",".","..-.","--.","....","..",".---","-.-",".-..","--","-.","---",".--.","--.-",".-.","...","-","..-","...-",".--","-..-","-.--","--.."] let words = ["gin", "zen", "gig", "msg"] longestMorseCodeWords(words) The Morse...
Write a function in JAVASCRIPT that accepts an array as argument. The function should loop through...
Write a function in JAVASCRIPT that accepts an array as argument. The function should loop through the array elements and accumulate the sum of ASCII value of each character in element and return the total. For example: function([‘A’, ‘bc’, 12]); // returns 361 which is the sum of 65 + 98 + 99 + 49 + 50 Use of any built in string functions or built in array functions is not allowed, Any help would be much appreciated
Given the following array, write a program in C++ to sort the array using a selection...
Given the following array, write a program in C++ to sort the array using a selection sort and display the number of scores that are less than 500 and those greater than 500. Scores[0] = 198 Scores[3] = 85 Scores[6] = 73 Scores[9] = 989 Scores[1] = 486 Scores[4] = 216 Scores[7] = 319 Scores[2] = 651 Scores[5] = 912 Scores[8] = 846
Write a complete C program that searches an element in array using pointers. Please use the...
Write a complete C program that searches an element in array using pointers. Please use the function called search to find the given number. //Function Prototype void search (int * array, int num, int size)
Javascript array of objects: I'm trying to get the input into an array of objects, and...
Javascript array of objects: I'm trying to get the input into an array of objects, and then display the information in a table using a for loop, but I don't think my path is right <!DOCTYPE html> <head> <title>Form</title> <meta charset="utf-8" /> <style media="screen"> h1 { text-align: center; } div { background-color: #pink; border: 2px solid green; padding: 15px; margin: 65px; } </style> <script> var list = []; total = 0; text = ""; function Product(item, quantity, costs){ this.item =...
Write the below code to use HTML and JavaScript. 1. a) Write a JavaScript program to...
Write the below code to use HTML and JavaScript. 1. a) Write a JavaScript program to display the current day and time. b) Write a JavaScript program to print the contents of the current window.   c) Write a JavaScript program where the program takes a random integer between 1 to 10 d) Write a JavaScript program to calculate multiplication and division of two numbers (input from the user). e)Write a JavaScript program to create a new string from a given...
USING jgrasp environment, javascript rite a complete program that prompts the user for two integers and...
USING jgrasp environment, javascript rite a complete program that prompts the user for two integers and then prints the following report to the screen, exactly as shown. example, using 23 and 18 as the user input: your numbers are :23 and 18 sum=41 product=414 use the scanner class nextlnt() method to read the user's numbers: scanner keyboard... ...keyboard.nextlnt()
Spam Filtering using Naïve Bayesian classifier In Spam filtering problem the examples or observations are the...
Spam Filtering using Naïve Bayesian classifier In Spam filtering problem the examples or observations are the emails, and the features are the words in the email. When using words as features we suppose that some words are more likely to appear in spam than in non-spam, which is the basic premise underlying most spam filters. The attached folder contains three files: Spmabase.Documentation: has all the information about the dataset Source Number of examples (instances or observations) Number of attributes Attributes...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT