View Pit Stop page for race #3 by leonidas_the_great — Ghost race
View profile for Leonidas (leonidas_the_great)
Official speed | 38.03 wpm (94.98 seconds elapsed during race) |
---|---|
Race Start | September 23, 2024 2:53:00am UTC |
Race Finish | September 23, 2024 2:54:35am UTC |
Outcome | No win (3 of 3) |
Opponents |
1. thelegendarygodray (42.10 wpm) 2. ayaseshu (40.37 wpm) |
Accuracy | 94.0% |
Points | 29.15 |
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.'; } } |