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