
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Return Two Numbers Whose Sum is N and Product M in JavaScript
We are required to write a JavaScript function that takes in two numbers, say m and n and returns two numbers whose sum is n and product is m. If there exist no such numbers, then our function should return false
Let’s write the code for this function −
Example
const perfectNumbers = (sum, prod) => { for(let i = 0; iOutput
Following is the output in the console −
false [ 5, 9 ] [ 7, 14 ]
Advertisements