Matthew (shorent)

Race #18

View Pit Stop page for race #18 by shorentGhost race

View profile for Matthew (shorent)

Official speed 25.84 wpm (139.78 seconds elapsed during race)
Race Start December 4, 2022 4:35:09pm UTC
Race Finish December 4, 2022 4:37:29pm UTC
Outcome Win (1 of 3)
Accuracy 89.0%
Points 19.81
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.'; } }