I try to convert a number with leading zero. JavaScript interpret the number with leading zero as octal number. But I would like to convert the number to string as decimal number and preserve the leading zero. Any idea?
<!DOCTYPE html>
<html>
<body>
<p>Click the button to display the formatted number.</p>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>
<script>
function myFunction() {
var num = 015;
var n = Number(num).toString();
document.getElementById("demo").innerHTML = n;
}
</script>
</body>
</html>
try below code
output: 0015