By Gregor Adams @pixelass
I have this code but it doesn't work.
const number = 10;
const string = number.tostring();
- PGregor Adams @pixelassYou have a typo. it should be toString() const number = 10; const string = number.toString();- JJessica Lörs @JessicaYes, pixelass is right 👍