js convert to str code example
Example 1: javascript to string
num.toString();
Example 2: javascript number to string
const toNumber = str => +str;
// Example
toNumber('42'); // 42
num.toString();
const toNumber = str => +str;
// Example
toNumber('42'); // 42