Information
Number.MAX_SAFE_INTEGER = 9007199254740991 link
Issue
1000000000000 === 999999999999.999999  // Gives output true
1000000000000 === 999999999999.99999   // Gives output true
1000000000000 === 999999999999.9999    // Gives output false
Any clue why this is happening?
 
     
    