DEV Community

Discussion on: 8 JavaScript Tips & Tricks That No One Teaches 🚀

Collapse
 
sonterix profile image
Nick • Edited

Also, u can convert number to string in this way:

const num = 32
const str = `${32}`
Enter fullscreen mode Exit fullscreen mode
Collapse
 
garvitmotwani profile image
Garvit Motwani

That is interesting and thanks for sharing!!

Collapse
 
aalencar profile image
Alexandre Alencar

or

num + ''

Collapse
 
sonterix profile image
Nick

This method described in the article :/

Collapse
 
vladimirc profile image
Vladimir C

I believe you meant

const str = `${num}`
Enter fullscreen mode Exit fullscreen mode

Some comments have been hidden by the post's author - find out more