Race Result Details |
Racer | Matho (matho_) |
Race Number | 15 |
Date | Wed, 25 Sep 2024 19:20:56 |
Universe | code |
Speed |
45 WPM
![]() |
Accuracy | 94% |
Rank | 4th place (out of 4) |
Opponents | barat_paim (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)
|