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