Convert a number to string

Simple example of converting a number to string
<!DOCTYPE html>
<html>
<head>
</head>
<body>

<script>

   var numberToConvert = 3045;

   var stringFromNumber = numberToConvert.toString();
   
   console.log("Type of is " + typeof stringFromNumber); // you will get string

</script>

</body>
</html>

Responses

0 Replies