JS jette un numéro dans une chaîne

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