Race Result Details |
Racer | Clippy (jesspacito) |
Race Number | 1 |
Date | Fri, 2 Jun 2023 20:51:02 |
Universe | code |
Speed |
24 WPM
![]() |
Accuracy | 96.9% |
Rank | 4th place (out of 2) |
Opponents | ttgh24201 (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.';
}
}
— (other)
by http://www.javascriptbook.com
(see stats)
|