You are to develop a JavaScript file (problems.js) that contains the implementation of 5 functions. Each function is represented as one step,
Hi, I have posted this question before but the solution am getting is not what I want.
Note:
Please follow the instructions I posted before the question, let me know if there is an issue.
Instruction:
Please write these problems in javascript.
1. You are to have two javascript files:
a. your problem javascript and
b. your test javascript file that verifies the function that was written in your problem javascript
2. The implementation for your 5 JavaScript functions must be completed within your - problems.js file.
3. Your Problem JavaScript functions file must be configured for strict mode (“use strict”)
The pages that follow provide the description of the 5 JavaScript functions that you must implement
Questions
1. Description
a). You are to develop a JavaScript file (problems.js) that contains the implementation of 5
functions. Each function is represented as one step,
b). Each function is independent and solves a unique problem, as such, treat and implement each function in isolation of the others, that is, you should only focus on one problem at a time.
2). Objective
• Write decision-making statements and control structures to solve problems
• Apply
• Testing and debugging
3. Please ensure to remove all instances of the following from your final submission solution:
• document.write()
• innerHTML()
• alert()
• any commented code
• Do not overuse the console log, spamming the console log unnecessarily
Step by step
Solved in 2 steps