Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<h1>JSON.stringify()</h1>
<p>JSON.stringify() can convert numers to strings.</p>
<p id="demo"></p>
<script>
const num = 123e-5;
const myJSON = JSON.stringify(num);
document.getElementById("demo").innerHTML = myJSON;
</script>
</body>
</html>