View Pit Stop page for race #196 by photondestroyer — Ghost race
View profile for The don (photondestroyer)
Official speed | 58.99 wpm (61.23 seconds elapsed during race) |
---|---|
Race Start | January 24, 2023 4:02:24pm UTC |
Race Finish | January 24, 2023 4:03:25pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 45.23 |
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.'; } } |