console.log(Math.sqrt(15129));
// floating-point between 0 (inclusive) and 42 (exclusive) console.log(Math.random() * 42);
console.log(Math.floor(Math.PI));
console.log(Math.ceil(Math.PI));
console.log(Math.max(36, 74, 63, 18, 88, 92, 29, 7, 45, 51)); // or using an array: const nums = [36, 74, 63, 18, 88, 92, 29, 7, 45, 51]; console.log(Math.max(...nums));