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