x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<h1>JavaScript MAX_SAFE_INTEGER</h1>
6
<script>
7
    const num = Number.MAX_SAFE_INTEGER;
8
    document.write(num);
9
</script>
10
11
</body>
12
</html>