View Pit Stop page for race #1 by bensnake — Ghost race
View profile for Ben (bensnake)
| Official speed | 48.24 wpm (74.88 seconds elapsed during race) |
|---|---|
| Race Start | March 15, 2021 5:34:25am UTC |
| Race Finish | March 15, 2021 5:35:40am UTC |
| Outcome | Win (1 of 2) |
| Accuracy | 97.0% |
| Points | 36.99 |
| 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.'; } } |