Race Result Details |
Racer | 2411 (khew123) |
Race Number | 1 |
Date | Wed, 15 Jan 2025 20:52:23 |
Universe | code |
Speed |
19 WPM
![]() |
Accuracy | 91.3% |
Rank | 4th place (out of 5) |
Opponents | huheho_1 (1st place) semauracing (2nd place) |
Text typed:
function calculateArea(width, height) {
try {
var area = width * height;
if (!isNaN(area)) {
return area;
} else {
throw new Error('calculateArea() received invalid number');
}
} catch(e) {
console.log(e.name + ' ' + e.message);
return 'We were unable to calculate the area.';
}
}
—
Throw
|