View Pit Stop page for race #8 by skillz9600 — Ghost race
View profile for Kevin (skillz9600)
Official speed | 47.71 wpm (75.71 seconds elapsed during race) |
---|---|
Race Start | January 30, 2023 6:44:13pm UTC |
Race Finish | January 30, 2023 6:45:28pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 95.0% |
Points | 36.58 |
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.'; } } |