w3resource

JavaScript: Check whether two numbers are in range 40..60 or in the range 70..100 inclusive

JavaScript Basic: Exercise-33 with Solution

Write a JavaScript program to check whether two numbers are in the range 40..60 or 70..100 inclusive.

Pictorial Presentation:

JavaScript: Check whether two numbers are in range 40..60 or in the range 70..100 inclusive

Sample Solution:

JavaScript Code:

// Define a function named numbers_ranges with parameters x and y
function numbers_ranges(x, y) {
  // Check if x and y fall within the first range (40 to 60) or the second range (70 to 100)
  if ((x >= 40 && x <= 60 && y >= 40 && y <= 60) || (x >= 70 && x <= 100 && y >= 70 && y <= 100)) {
    // Return true if the conditions are met
    return true;
  } else {
    // Return false if the conditions are not met
    return false;
  }
}

// Log the result of calling numbers_ranges with the arguments 44 and 56 to the console
console.log(numbers_ranges(44, 56));

// Log the result of calling numbers_ranges with the arguments 70 and 95 to the console
console.log(numbers_ranges(70, 95));

// Log the result of calling numbers_ranges with the arguments 50 and 89 to the console
console.log(numbers_ranges(50, 89)); 

Sample Output:

true
true
false

Live Demo:

See the Pen JavaScript: check if two numbers are in a range - basic- ex-33 by w3resource (@w3resource) on CodePen.


Flowchart:

Flowchart: JavaScript - Check whether two numbers are in range 40..60 or in the range 70..100 inclusive

ES6 Version:

 // Define a function named numbers_ranges using arrow function syntax with parameters x and y
const numbers_ranges = (x, y) => {
  // Check if x and y fall within the specified ranges using the logical OR operator
  return (
    (x >= 40 && x <= 60 && y >= 40 && y <= 60) ||
    (x >= 70 && x <= 100 && y >= 70 && y <= 100)
  );
};

// Log the result of calling numbers_ranges with the arguments 44 and 56 to the console
console.log(numbers_ranges(44, 56));

// Log the result of calling numbers_ranges with the arguments 70 and 95 to the console
console.log(numbers_ranges(70, 95));

// Log the result of calling numbers_ranges with the arguments 50 and 89 to the console
console.log(numbers_ranges(50, 89));

Previous: JavaScript program to find a value which is nearest to 100 from two different given integer values.
Next: JavaScript program to find the larger number from the two given positive integers, the two numbers are in the range 40..60 inclusive.

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.