Race Result Details |
Racer | marco soria (marco_soria) |
Race Number | 18 |
Date | Fri, 19 Sep 2025 16:13:36 |
Universe | code |
Speed |
27 WPM
![]() |
Accuracy | 94.6% |
Rank | 1st place (out of 5) |
Opponents | cris1310 (6th place) iverjoel (3rd place) jhony99 (2nd place) katpc (5th 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)
|