Function 2: Calculate Remainder function _two (dividend, divisor) Create a JavaScript function that meets the following requirements: • Is passed two integer parameters, one representing a dividend, and the other a divisor. • The function is NOT permitted to use the % (mod) operator The function can use any combination of +, -, * or / to solve the problem The function displays the calculated remainder (console log) as illustrated below: • The function returns the result of the calculation back to the caller. Calling _two(9, 3) The calculated modulus value is: 0 Calling _two(9, 0) undefined Calling _two(-9, 3) unsigned numbers supported only
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 programming logic to solve basic to intermediate problems
• Testing and debugging
3. Variables/function name can be short, yet descriptive/meaningful, camel casing applied
• Use let/const over keyword var when possible
• Avoid globals
• Stick to a strict coding style
• Comment as much as needed but not more
• Clean and easy to read code (indentation, space before and after any operator)
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
![Function 2: Calculate Remainder
function _two (dividend, divisor)
Create a JavaScript function that meets the following requirements:
• Is passed two integer parameters, one representing a dividend, and the other a divisor.
• The function is NOT permitted to use the % (mod) operator
• The function can use any combination of +, -, * or / to solve the problem
• The function displays the calculated remainder (console log) as illustrated below:
• The function returns the result of the calculation back to the caller.
Calling _two(9, 3)
The calculated modulus value is: 0
Calling _two(9, ®)
undefined
Calling _two(-9, 3)
unsigned numbers supported only](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2Faea484e9-46e6-4eaf-9b67-c167b4ca38e3%2Fb9c68ef3-0c4b-4e23-96eb-0e987c4566f0%2Fz2mux5d_processed.png&w=3840&q=75)
![](/static/compass_v2/shared-icons/check-mark.png)
Step by step
Solved in 3 steps with 2 images
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![C How to Program (8th Edition)](https://www.bartleby.com/isbn_cover_images/9780133976892/9780133976892_smallCoverImage.gif)
![Database Systems: Design, Implementation, & Manag…](https://www.bartleby.com/isbn_cover_images/9781337627900/9781337627900_smallCoverImage.gif)
![Programmable Logic Controllers](https://www.bartleby.com/isbn_cover_images/9780073373843/9780073373843_smallCoverImage.gif)