JavaScript Number.MIN_SAFE_INTEGER Property Last Updated : 15 Jul, 2025 Comments Improve Suggest changes 2 Likes Like Report The JavaScript Number.MIN_SAFE_INTEGER is a constant number that represents the minimum safe integer. This constant has a value of (-(253 - 1)). Use Number.MIN_SAFE_INTEGER, as a property of a number object because it is a static property of a number. Syntax: Number.MIN_SAFE_INTEGER Return Value: Constant number. Example 1: Below example illustrates the use of simple Number.MIN_SAFE_INTEGER property. JavaScript const a = Number.MIN_SAFE_INTEGER - 1; const b = Number.MIN_SAFE_INTEGER - 2; console.log(Number.MIN_SAFE_INTEGER); console.log(a); console.log(a === b); Output: -9007199254740991 -9007199254740992 true Example 2: Below example illustrates the usage of Number.MIN_SAFE_INTEGER property using Math.pow() function. JavaScript const c = Number.MIN_SAFE_INTEGER; const d = -(Math.pow(2, 53) - 1); console.log(c); console.log(d); console.log(c === d); Output: -9007199254740991 -9007199254740991 true Note: Internet explorer is not supported. Supported Browsers: Chrome 34 and aboveEdge 12 and aboveFirefox 31 and aboveOpera 21 and aboveSafari 9 and above We have a complete list of JavaScript Number constructor, properties, and methods list, to know more about the numbers please go through that article. Create Quiz Comment T thacker_shahid Follow 2 Improve T thacker_shahid Follow 2 Improve Article Tags : JavaScript Web Technologies JavaScript-Properties JavaScript-Numbers Explore JavaScript BasicsIntroduction to JavaScript4 min readVariables and Datatypes in JavaScript6 min readJavaScript Operators5 min readControl Statements in JavaScript4 min readArray & StringJavaScript Arrays7 min readJavaScript Array Methods7 min readJavaScript Strings5 min readJavaScript String Methods9 min readFunction & ObjectFunctions in JavaScript5 min readJavaScript Function Expression3 min readFunction Overloading in JavaScript4 min readObjects in JavaScript4 min readJavaScript Object Constructors4 min readOOPObject Oriented Programming in JavaScript3 min readClasses and Objects in JavaScript4 min readWhat Are Access Modifiers In JavaScript ?5 min readJavaScript Constructor Method7 min readAsynchronous JavaScriptAsynchronous JavaScript2 min readJavaScript Callbacks4 min readJavaScript Promise4 min readEvent Loop in JavaScript4 min readAsync and Await in JavaScript2 min readException HandlingJavascript Error and Exceptional Handling6 min readJavaScript Errors Throw and Try to Catch2 min readHow to create custom errors in JavaScript ?2 min readJavaScript TypeError - Invalid Array.prototype.sort argument1 min readDOMHTML DOM (Document Object Model)8 min readHow to select DOM Elements in JavaScript ?3 min readJavaScript Custom Events4 min readJavaScript addEventListener() with Examples9 min readAdvanced TopicsClosure in JavaScript4 min readJavaScript Hoisting6 min readScope of Variables in JavaScript3 min readJavaScript Higher Order Functions7 min readDebugging in JavaScript4 min read Like