Hello Friends 👋,

Welcome To Infinitbility! ❤️

JavaScript provide .toString() method to convert any datatype to string datatype, and today we are going to .toString() method to convert number to string in javascript.

All below tutorials work on javascript, React, React Native, Vue, Node, Deno, typescript, and all javascript frameworks.

Let start today tutorial How to convert a number to a string in JavaScript?

For now, we create first on num veriable and store number on it and check their datatype.

For number to string conversion, we are using num.toString(); method and re-console string value and their datatype.

let num = 78;
console.log(num, typeof num);

let str = num.toString();

console.log(str, typeof str);

Output

number, string, conversion