js cast a number into a string

Solutions on MaxInterview for js cast a number into a string by the best coders in the world

showing results for - "js cast a number into a string"
Wesley
07 Mar 2019
1const number = 42;
2console.log(number.toString());
3// => "42"
4