“JavaScript entre” Respostas de código

Número JavaScript entre valores

Number.prototype.between = function(a, b) {
  var min = Math.min.apply(Math, [a, b]),
    max = Math.max.apply(Math, [a, b]);
  return this > min && this < max;
};

var windowSize = 550;

console.log(windowSize.between(500, 600));
Prafy

Se entre dois números JavaScript

if (500 < thenumber && thenumber < 600) {
  // ...
}
Confused Sphere

JavaScript entre

Number.prototype.between = function(a,b){ 
  return (a>b) ? this>=b && this<=a : this>=a && this<=b;
} 

(7).between(5,10); // true
(3).between(5,10); // false
Luis Alfredo G Caldas Neto

Respostas semelhantes a “JavaScript entre”

Perguntas semelhantes a “JavaScript entre”

Mais respostas relacionadas para “JavaScript entre” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código