The RangeError
object indicates an error when a value is not in the set or range of allowed values.
new RangeError([message[, fileName[, lineNumber]]])
message
fileName
lineNumber
A RangeError
is thrown when trying to pass a value as an argument to a function that does not allow a range that includes the value. This can be encountered when passing a value that is not one of the allowed string values to String.prototype.normalize()
, or when attempting to create an array of an illegal length with the Array
constructor, or when passing bad values to the numeric methods Number.toExponential()
, Number.toFixed()
or Number.toPrecision()
.
RangeError.prototype
RangeError
object.The global RangeError
contains no methods of its own, however, it does inherit some methods through the prototype chain.
RangeError
instancesRangeError.prototype.constructor
RangeError.prototype.message
RangeError
should provide its own message
property, in SpiderMonkey, it inherits Error.prototype.message
.RangeError.prototype.name
Error
.RangeError.prototype.fileName
Error
.RangeError.prototype.lineNumber
Error
.RangeError.prototype.columnNumber
Error
.RangeError.prototype.stack
Error
.Although the RangeError
prototype object does not contain any methods of its own, RangeError
instances do inherit some methods through the prototype chain.
RangeError
(for numeric values)function check(n) { if(!(n >= -500 && n <= 500)) { throw new RangeError("The argument must be between -500 and 500."); } } try { check(2000); } catch(error) { if(error instanceof RangeError) { // Handle the error. } }
RangeError
(for non-numeric values)function check(value) { if(["apple", "banana", "carrot"].includes(value) === false) { throw new RangeError("The argument must be an \"apple\", \"banana\", or \"carrot\"."); } } try { check("cabbage"); } catch(error) { if(error instanceof RangeError) { // Handle the error. } }
Specification | Status | Comment |
---|---|---|
ECMAScript 3rd Edition (ECMA-262) | Standard | Initial definition. |
ECMAScript 5.1 (ECMA-262) The definition of 'RangeError' in that specification. | Standard | |
ECMAScript 2015 (6th Edition, ECMA-262) The definition of 'RangeError' in that specification. | Standard | |
ECMAScript Latest Draft (ECMA-262) The definition of 'RangeError' in that specification. | Draft |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | Yes | Yes | 1 | Yes | Yes | Yes |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | Yes | Yes | Yes | 4 | Yes | Yes | Yes |
Server | |
---|---|
Node.js | |
Basic support | Yes |
Error
RangeError.prototype
Array
Number.toExponential()
Number.toFixed()
Number.toPrecision()
String.prototype.normalize()
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RangeError