View Pit Stop page for race #1 by lelluge — Ghost race
View profile for Lelluge (lelluge)
Official speed | 35.79 wpm (100.92 seconds elapsed during race) |
---|---|
Race Start | August 1, 2023 4:06:08pm UTC |
Race Finish | August 1, 2023 4:07:49pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 27.44 |
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.'; } } |