View Pit Stop page for race #6 by timjeffery44 — Ghost race
View profile for (timjeffery44)
Official speed | 44.23 wpm (75.97 seconds elapsed during race) |
---|---|
Race Start | May 3, 2019 3:00:31am UTC |
Race Finish | May 3, 2019 3:01:47am UTC |
Outcome | No win (1 of 1) |
Accuracy | 90.0% |
Points | 33.91 |
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.'; } } |