New Keyboard Struggle (ragemodeon)

Race #57

View Pit Stop page for race #57 by ragemodeonGhost race

View profile for New Keyboard Struggle (ragemodeon)

Official speed 70.04 wpm (51.57 seconds elapsed during race)
Race Start July 29, 2022 8:06:42am UTC
Race Finish July 29, 2022 8:07:33am UTC
Outcome No win (3 of 3)
Accuracy 97.0%
Points 53.70
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.'; } }