Convertir el número a JavaScript booleano

const number = 100;

!!number; // true
Boolean(number); // true
Jumping Boy