View Pit Stop page for race #132 by scraex — Ghost race
| Official speed | 64.92 wpm (55.64 seconds elapsed during race) |
|---|---|
| Race Start | December 7, 2021 12:21:25pm UTC |
| Race Finish | December 7, 2021 12:22:20pm UTC |
| Outcome | No win (4 of 5) |
| Opponents |
1. sura5 (70.95 wpm) 2. dindondoe (70.90 wpm) 3. peaceinchrist (66.32 wpm) |
| Accuracy | 93.0% |
| Points | 49.77 |
| 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.'; } } |