Race Result Details |
Racer | california (california_heat_wave) |
Race Number | 2 |
Date | Fri, 26 Jul 2024 2:22:03 |
Universe | code |
Speed |
49 WPM
![]() |
Accuracy | 94% |
Rank | 3rd place (out of 9) |
Opponents | adrianop (7th place) casey_2000 (2nd place) diudiudiudiu (4th place) erickwan0330 (9th place) kind_hat1628 (1st place) wyshcheung (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)
|