View Pit Stop page for race #3 by wlee753159 — Ghost race
View profile for William (wlee753159)
Official speed | 57.23 wpm (63.11 seconds elapsed during race) |
---|---|
Race Start | May 28, 2023 9:48:46pm UTC |
Race Finish | May 28, 2023 9:49:49pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 95.0% |
Points | 43.88 |
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.'; } } |