Race Result Details |
Racer | jhonny (jhonnymartinez) |
Race Number | 15 |
Date | Wed, 4 Jun 2025 20:11:50 |
Universe | code |
Speed |
28 WPM
![]() |
Accuracy | 93.8% |
Rank | 9th place (out of 16) |
Opponents | alexlopez114387 (7th place) beltran_tarqui (6th place) erick_vargas (3rd place) jhonny_ct (14th place) kevin_49 (5th place) maria_ortega10 (1st place) mauricio_aguilar_rios (12th place) samiraarancibia123426 (2nd place) sarai_vega012 (13th place) sharick_chungara (4th place) tocsky (8th place) yarot123 (10th 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)
|