Race Result Details |
Racer | DNF (lam4nk) |
Race Number | 1016 |
Date | Thu, 11 Apr 2024 22:35:21 |
Universe | code |
Speed |
54 WPM
![]() |
Accuracy | 95.3% |
Rank | 3rd place (out of 3) |
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
|