View Pit Stop page for race #2 by enqq — Ghost race
Official speed | 39.99 wpm (84.02 seconds elapsed during race) |
---|---|
Race Start | December 2, 2020 4:17:46am UTC |
Race Finish | December 2, 2020 4:19:10am UTC |
Outcome | Win (1 of 3) |
Accuracy | 93.0% |
Points | 30.66 |
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.'; } } |