Race Result Details |
Racer | jose (jose_benito) |
Race Number | 1 |
Date | Mon, 16 Sep 2024 2:34:50 |
Universe | code |
Speed |
21 WPM
![]() |
Accuracy | 94.4% |
Rank | 6th place (out of 14) |
Opponents | fabioladiaz (7th place) jos3ar (2nd place) karol_mm (3rd place) mau_r_123 (4th 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)
|