View Pit Stop page for race #25 by auxfree — Ghost race
View profile for aux frelemeu (auxfree)
Official speed | 62.64 wpm (57.66 seconds elapsed during race) |
---|---|
Race Start | April 8, 2023 9:59:49am UTC |
Race Finish | April 8, 2023 10:00:47am UTC |
Outcome | No win (2 of 3) |
Accuracy | 95.0% |
Points | 48.03 |
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.'; } } |