Lucas (st3ezy)

Race #4

View Pit Stop page for race #4 by st3ezyGhost race

View profile for Lucas (st3ezy)

Official speed 56.17 wpm (64.30 seconds elapsed during race)
Race Start June 9, 2023 1:16:31am UTC
Race Finish June 9, 2023 1:17:36am UTC
Outcome No win (3 of 3)
Accuracy 93.0%
Points 43.06
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.'; } }