View Pit Stop page for race #3 by piknic — Ghost race
View profile for pikky (piknic)
Official speed | 33.66 wpm (99.82 seconds elapsed during race) |
---|---|
Race Start | April 19, 2019 5:44:25am UTC |
Race Finish | April 19, 2019 5:46:05am UTC |
Outcome | No win (4 of 4) |
Accuracy | 94.0% |
Points | 25.80 |
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.'; } } |