Race Result Details |
Racer | Omnom (marloolvena) |
Race Number | 5 |
Date | Fri, 24 Nov 2023 8:56:25 |
Universe | code |
Speed |
42 WPM
![]() |
Accuracy | 91.6% |
Rank | 3rd place (out of 4) |
Opponents | astraphilia (1st 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)
|