Jhonny Condori (jhonny_ct)

Race #19

View Pit Stop page for race #19 by jhonny_ctGhost race

View profile for Jhonny Condori (jhonny_ct)

Official speed 24.42 wpm (147.91 seconds elapsed during race)
Race Start June 22, 2025 10:55:10pm UTC
Race Finish June 22, 2025 10:57:38pm UTC
Outcome No win (13 of 14)
Opponents 9. nessa2 (26.53 wpm)
10. liz_mariela (26.08 wpm)
11. sarai_vega012 (25.30 wpm)
Accuracy 94.0%
Points 18.72
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.'; } }