View Pit Stop page for race #1 by funplusphoenix — Ghost race
View profile for Alan (funplusphoenix)
Official speed | 37.47 wpm (96.40 seconds elapsed during race) |
---|---|
Race Start | January 29, 2025 6:21:19pm UTC |
Race Finish | January 29, 2025 6:22:56pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 95.0% |
Points | 28.73 |
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.'; } } |