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.

Visual 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:

JavaScript Code:

// Define a function named test_number with parameters x and y
function test_number(x, y) {
    // Return true if x is equal to 15, y is equal to 15, the sum of x and y is equal to 15,
    // or the absolute difference between x and y is equal to 15; otherwise, return false.
    return (x === 15 || y === 15 || x + y === 15 || Math.abs(x - y) === 15);
}

// Log the result of calling test_number with the arguments 15 and 9 to the console
console.log(test_number(15, 9));

// Log the result of calling test_number with the arguments 25 and 15 to the console
console.log(test_number(25, 15));

// Log the result of calling test_number with the arguments 7 and 8 to the console
console.log(test_number(7, 8));

// Log the result of calling test_number with the arguments 25 and 10 to the console
console.log(test_number(25, 10));

// Log the result of calling test_number with the arguments 5 and 9 to the console
console.log(test_number(5, 9));

// Log the result of calling test_number with the arguments 7 and 9 to the console
console.log(test_number(7, 9));

// Log the result of calling test_number with the arguments 9 and 25 to the console
console.log(test_number(9, 25)); 

Output:

true
true
true
true
false
false
false

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.


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:

 // Define a function named test_number with parameters x and y
function test_number(x, y) {
    // Return true if x is equal to 15, y is equal to 15, the sum of x and y is equal to 15, or the absolute difference between x and y is equal to 15
    return (x === 15 || y === 15 || x + y === 15 || Math.abs(x - y) === 15);
}

// Log the result of calling test_number with the arguments 15 and 9 to the console
console.log(test_number(15, 9));

// Log the result of calling test_number with the arguments 25 and 15 to the console
console.log(test_number(25, 15));

// Log the result of calling test_number with the arguments 7 and 8 to the console
console.log(test_number(7, 8));

// Log the result of calling test_number with the arguments 25 and 10 to the console
console.log(test_number(25, 10));

// Log the result of calling test_number with the arguments 5 and 9 to the console
console.log(test_number(5, 9));

// Log the result of calling test_number with the arguments 7 and 9 to the console
console.log(test_number(7, 9));

// Log the result of calling test_number with the arguments 9 and 25 to the console
console.log(test_number(9, 25));

Improve this sample solution and post your code through Disqus.

Previous: 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: 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.