patrick (flash225)

Race #4

View Pit Stop page for race #4 by flash225Ghost race

View profile for patrick (flash225)

Official speed 29.14 wpm (123.95 seconds elapsed during race)
Race Start June 12, 2023 2:51:25am UTC
Race Finish June 12, 2023 2:53:29am UTC
Outcome No win (3 of 3)
Accuracy 93.0%
Points 22.34
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.'; } }