View Pit Stop page for race #38 by arc_sec — Ghost race
View profile for Vielle (arc_sec)
Official speed | 93.99 wpm (35.75 seconds elapsed during race) |
---|---|
Race Start | August 8, 2019 3:49:09am UTC |
Race Finish | August 8, 2019 3:49:45am UTC |
Outcome | No win (1 of 1) |
Accuracy | 97.0% |
Points | 72.06 |
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.'; } } |