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