JS бросает число в строку

const number = 42;
console.log(number.toString());
// => "42"
Curious Chamois