Race Result Details |
Racer | Sutolimin (sutolimin_) |
Race Number | 3 |
Date | Fri, 17 Oct 2025 8:57:18 |
Universe | code |
Speed |
64 WPM
![]() |
Accuracy | 93.2% |
Rank | 8th place (out of 9) |
Opponents | coencidence (4th place) jansen52xd (7th place) jyyyy (1st place) kayrazalfa (2nd place) minnalkd (5th place) msmichaels (6th place) sjzdylan (3rd place) xlium (9th 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)
|