View Pit Stop page for race #4 by concurrent — Ghost race
View profile for account deleted (concurrent)
| Official speed | 50.74 wpm (66.22 seconds elapsed during race) |
|---|---|
| Race Start | January 3, 2020 3:00:23pm UTC |
| Race Finish | January 3, 2020 3:01:29pm UTC |
| Outcome | Win (1 of 2) |
| Accuracy | 97.0% |
| Points | 38.90 |
| 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.'; } } |