View Pit Stop page for race #85 by hellothen — Ghost race
View profile for SalmanMKC (hellothen)
Official speed | 62.86 wpm (53.45 seconds elapsed during race) |
---|---|
Race Start | January 29, 2019 9:34:12am UTC |
Race Finish | January 29, 2019 9:35:06am UTC |
Outcome | No win (2 of 3) |
Accuracy | 96.0% |
Points | 48.20 |
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.'; } } |