View Pit Stop page for race #44 by deroche1 — Ghost race
View profile for deroche (deroche1)
| Official speed | 86.15 wpm (39.00 seconds elapsed during race) |
|---|---|
| Race Start | February 16, 2019 5:39:47am UTC |
| Race Finish | February 16, 2019 5:40:26am UTC |
| Outcome | No win (2 of 3) |
| Opponents |
1. sidd_ (127.19 wpm) 3. actuallynonquitforlife (57.42 wpm) |
| Accuracy | 95.0% |
| Points | 66.05 |
| 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.'; } } |