View Pit Stop page for race #1 by kippey — Ghost race
Official speed | 42.19 wpm (79.64 seconds elapsed during race) |
---|---|
Race Start | October 9, 2020 3:45:16am UTC |
Race Finish | October 9, 2020 3:46:35am UTC |
Outcome | Win (1 of 2) |
Accuracy | 93.0% |
Points | 32.35 |
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.'; } } |