View Pit Stop page for race #1 by tom_coc — Ghost race
View profile for Daniel (tom_coc)
Official speed | 25.09 wpm (143.96 seconds elapsed during race) |
---|---|
Race Start | December 9, 2020 2:04:56am UTC |
Race Finish | December 9, 2020 2:07:20am UTC |
Outcome | Win (1 of 3) |
Accuracy | 90.0% |
Points | 19.24 |
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.'; } } |