Race Result Details |
Racer | Big (bakekaga) |
Race Number | 2 |
Date | Tue, 23 Nov 2021 4:47:59 |
Universe | code |
Speed |
66 WPM
![]() |
Accuracy | 96.2% |
Rank | 3rd place (out of 2) |
Opponents | fishy15 (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)
|