Related questions
1) Create a function named "justEmails". The function should accept a parameter for JSON data named "data". The function should loop through the JSON user data with forEach(). Using the push method, add each user email to a new array
// Return the new array of emails.
// Test your function with this
// JSON data:
const jsonData = [
{
id: 1,
name: "Leanne Graham",
username: "Bret",
email: "Sincere@april.biz"
},
{
id: 2,
name: "Ervin Howell",
username: "Antonette",
email: "Shanna@melissa.tv"
},
{
id: 3,
name: "Clementine Bauch",
username: "Samantha",
email: "Nathan@yesenia.net"
}
];
//////////////////
HINT: The Higher Order Functions filter(), map(), and reduce() have inner functions that use a return statement. By putting HOFs inside of a function you create, you will also need to return the result of the HOFs.
Trending nowThis is a popular solution!
Step by stepSolved in 4 steps with 3 images
- /* Lecture 14: Arrays aS Function Parameters Date: 10/22/2021 Author: Sareh Taebi */ #include #define SIZE 50 // prototyping functions void fill array(int list[], int n, int in_value); int main() { int x [SIZE] = {0}; //computer needs to know about array type, number of elements and its name (address of the array) //call to a function that initializes all array fill_array (x, 7, 777); elements to 1 //print array elements for (int i = 0; i< SIZE ; i++) printf("%d\n", x[i]); return 0; //function definition comes after the main function /* fills any aray to an input value set by in_value parameter Pre: array list, size of array, input value */ void fill_array(int list[], int n, int in_value) { int i; for (i = 0; i< n ; i++) iist [i] in_value;arrow_forward1. In the context of this code, what data type is the variable user?const user = {fname:"Michael",lname:"Scott",role:"Regional Manager"} A. list/array B. function C. Boolean D. object 2. {"coord":{"lon":-76.6122,"lat":39.2904},"weather":[{"id":804,"main":"Clouds","description":"overcast clouds","icon":"04n"}],"base":"stations", "main":{"temp":39.69,"feels_like":33.1,"temp_min":37.11,"temp_max":41.47,"pressure":1024,"humidity":71}, "visibility":10000,"wind":{"speed":10.36,"deg":340},"clouds":{"all":100}, "dt":1670894055,"sys":{"type":1,"id":3829,"country":"US","sunrise":1670847420,"sunset":1670881416}, "timezone":-18000,"id":4347778,"name":"Baltimore","cod":200} What value would be stored in the following variable info based on the JSON data above? let info = data.weather[0].description A. Clouds B. Baltimore C. overcast clouds D. 33.1 E. none of the above 3. Describe the issue with the code sample below and explain what needs to be done to fix the problem....arrow_forwardز٢arrow_forward
- q2arrow_forwardExercise - Collection Functions Using the code below, use the map function to create an array of Int values, whose values are equal to the original integer value, plus 1. Use 0ドル as you iterate through the values of the array. Print the resulting collection. 5 let testScores = [65, 80, 88, 90, 47] Using the code below, use the filter function to create a new array of String values. The new array should only include Strings longer than four characters. Use 0ドル as you iterate through the values of the array. Print the resulting collection. Olet schoolSubjects = ["Math" , "Computer Science", "Gym", "English", "Biology"] Using the code below, use the reduce function to subtract all of the values within the array from the starting value 100. Print the resulting value. let damageTaken = [25, 10, 15, 30, 20]arrow_forwardNeed some help on this Python Quesionarrow_forward
- Description You are provided a skeleton code in the file student_code.c. Some functions are completely implemented, and some are partially implemented. Additionally, you can add your own functions if required. Complete the program as per following details so that we can have functionality as described in the Synopsis above. All the code in single C file. REMEMBER DO NOT USE sleep(). 1. The given code reads the file's content for you and populates a dynamic array of type struct thread with information about the threads. The threads have filled in this list of threads for you. Additionally, you can check the threadCount variable to see how many threads were created using the input file. If more members are needed, you can add them. You might be able to initialise those extra members during file read if you wish to. 2. The main() already contains the code to read threads from input file. However, there is no code to initialize, execute and synchronize threads. You have to perform these...arrow_forwardPleas help! Thank you.arrow_forwardWhat is a nested function? and what part in the following code is considered a nest function?? int main( ) { Begin:arraysize= readNum() Ok=verifySize(arraySize) if (ok==1) creatArray(array-size) else Go to Begin printArray(arraySize) reverseArray(arraySize) printArray (arraySize) } // ------------------------------------------------------------ int readNum() { input an integer return the integer to main program } // ------------------------------------------------------------ int versifySize( int arraySize) { if (0<arraySize< 20) return 1 else return 0 } // ------------------------------------------------------------ void...arrow_forward
- Text book imageDatabase System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationText book imageStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONText book imageDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- Text book imageC How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONText book imageDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningText book imageProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education