DEV Community

Discussion on: 3 simple ways to convert number to string in JS

Collapse
 
nombrekeff profile image
Keff

I will add a couple more:

const method4 = (value) => `${value}`;

// For floating values, if we want to get a specific amount of decimals
const method5 = (value, decimals = 2) => value.toFixed(decimals);
Enter fullscreen mode Exit fullscreen mode
Collapse
 
codewithnithin profile image
codeWithNithin

thank you