View Pit Stop page for race #1 by ppr3y — Ghost race
View profile for Gabriel (ppr3y)
Official speed | 31.96 wpm (113.02 seconds elapsed during race) |
---|---|
Race Start | May 21, 2025 1:18:07pm UTC |
Race Finish | May 21, 2025 1:20:00pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 94.0% |
Points | 24.50 |
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.'; } } |