pomgie (achan66)

Race #4

View Pit Stop page for race #4 by achan66Ghost race

View profile for pomgie (achan66)

Official speed 51.46 wpm (70.19 seconds elapsed during race)
Race Start September 13, 2022 4:10:33am UTC
Race Finish September 13, 2022 4:11:43am UTC
Outcome Win (1 of 2)
Accuracy 95.0%
Points 39.46
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.'; } }