View Pit Stop page for race #1 by theamanjs — Ghost race
View profile for Amanjot (theamanjs)
| Official speed | 30.58 wpm (109.88 seconds elapsed during race) |
|---|---|
| Race Start | December 1, 2019 9:12:26am UTC |
| Race Finish | December 1, 2019 9:14:16am UTC |
| Outcome | No win (2 of 2) |
| Opponents |
1. satnam9781 (41.44 wpm) |
| Accuracy | 94.0% |
| Points | 23.44 |
| 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.'; } } |