View Pit Stop page for race #61 by hellothen — Ghost race
View profile for SalmanMKC (hellothen)
Official speed | 67.06 wpm (50.10 seconds elapsed during race) |
---|---|
Race Start | January 28, 2019 10:14:14am UTC |
Race Finish | January 28, 2019 10:15:04am UTC |
Outcome | No win (3 of 3) |
Accuracy | 97.0% |
Points | 51.41 |
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.'; } } |