mlhhsid (mlhhsid)

Race #6

View Pit Stop page for race #6 by mlhhsidGhost race

View profile for mlhhsid (mlhhsid)

Official speed 56.21 wpm (64.26 seconds elapsed during race)
Race Start March 25, 2021 9:04:45pm UTC
Race Finish March 25, 2021 9:05:49pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 43.10
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.'; } }