“Überprüfen Sie, ob die Anzahl zwischen 1 und 100 Js liegt” Code-Antworten

JavaScript -Zahl zwischen Werten

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

Wenn zwischen zwei Zahlen JavaScript

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

Überprüfen Sie, ob die Anzahl zwischen 1 und 100 Js liegt

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

var windowSize=550;

console.log(windowSize.between(20,100) )
Egli Cobaj

Ähnliche Antworten wie “Überprüfen Sie, ob die Anzahl zwischen 1 und 100 Js liegt”

Fragen ähnlich wie “Überprüfen Sie, ob die Anzahl zwischen 1 und 100 Js liegt”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen