function multiply(x, y) {
if (x * y > Number.MAX_VALUE) {
return 'Process as Infinity';
}
return x * y;
}
console.log(multiply(1.7976931348623157e308, 1));
// Expected output: 1.7976931348623157e+308
console.log(multiply(1.7976931348623157e308, 2));
// Expected output: "Process as Infinity"