alex (alexsf_9000)

Race #2

View Pit Stop page for race #2 by alexsf_9000Ghost race

View profile for alex (alexsf_9000)

Official speed 35.50 wpm (101.75 seconds elapsed during race)
Race Start June 9, 2023 4:20:46pm UTC
Race Finish June 9, 2023 4:22:28pm UTC
Outcome No win (2 of 3)
Opponents 1. dv_learner (38.46 wpm)
Accuracy 93.0%
Points 27.22
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.'; } }