Race Result Details |
| Racer | Beimar Ramirez (jhony99) |
| Race Number | 70 |
| Date | Fri, 19 Sep 2025 16:13:37 |
| Universe | code |
| Speed |
27 WPM
Try to beat?
|
| Accuracy | 91.9% |
| Rank | 2nd place (out of 5) |
| Opponents | cris1310 (6th place) iverjoel (3rd place) katpc (5th place) marco_soria (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)
|
