w3resource

JavaScript: Check two given integer values and return true if one of the number is 15 or if their sum or difference is 15

JavaScript Basic: Exercise-45 with Solution

Write a JavaScript program that checks two integer values and returns true if either one is 15 or if their sum or difference is 15.

Pictorial Presentation:

JavaScript: Check two given integer values and return true if one of the number is 15 or if their sum or difference is 15

Sample Solution:

HTML Code:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JavaScript program to check two given integer values and return true if one of the number is 15 or if their sum or difference is 15.</title>
</head>
<body>

</body>
</html>

JavaScript Code:

function test_number(x, y) {
    return (x === 15 || y === 15 || x + y === 15 || Math.abs(x - y) === 15);
}

console.log(test_number(15, 9));
console.log(test_number(25, 15));
console.log(test_number(7, 8));
console.log(test_number(25, 10));
console.log(test_number(5, 9));
console.log(test_number(7, 9));
console.log(test_number(9, 25));

Sample Output:

true
true
true
true
false
false
false

Flowchart:

Flowchart: JavaScript - Check two given integer values and return true if one of the number is 15 or if their sum or difference is 15

ES6 Version:

function test_number(x, y) {
    return (x === 15 || y === 15 || x + y === 15 || Math.abs(x - y) === 15);
}

console.log(test_number(15, 9));
console.log(test_number(25, 15));
console.log(test_number(7, 8));
console.log(test_number(25, 10));
console.log(test_number(5, 9));
console.log(test_number(7, 9));
console.log(test_number(9, 25));

Live Demo:

See the Pen JavaScript: Check two given integer values and return true if one of the number is 15 or if their sum or difference is 15 - basic-ex-45 by w3resource (@w3resource) on CodePen.


Improve this sample solution and post your code through Disqus

Previous: Write a JavaScript program to check from three given integers that if a number is greater than or equal to 20 and less than one of the others.
Next:Write a JavaScript program to check two given non-negative integers and if one of the number (not both) is multiple of 7 or 11.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.

JavaScript: Tips of the Day

Assigns default values for all properties in an object that are undefined

Example:

const tips_defaults = (obj, ...defs) => Object.assign({}, obj, ...defs.reverse(), obj);
console.log(tips_defaults({ p: 1 }, { q: 2 }, { q: 6 }, { p: 3 })); 

Output:

[object Object] {
  p: 1,
  q: 2
}

 





We are closing our Disqus commenting system for some maintenanace issues. You may write to us at reach[at]yahoo[dot]com or visit us at Facebook