View Pit Stop page for race #21 by jhonny_ct — Ghost race
View profile for Jhonny Condori (jhonny_ct)
Official speed | 26.65 wpm (135.53 seconds elapsed during race) |
---|---|
Race Start | June 22, 2025 11:01:00pm UTC |
Race Finish | June 22, 2025 11:03:16pm UTC |
Outcome | No win (8 of 14) |
Opponents |
6. tocsky (29.28 wpm) 9. sharick_chungara (26.59 wpm) 10. nessa2 (26.44 wpm) 12. alex_ramos (25.36 wpm) 13. sarai_vega012 (24.55 wpm) |
Accuracy | 94.0% |
Points | 20.43 |
Text | #10015 (Length: 301 characters) 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.'; } } |