View Pit Stop page for race #1 by chsr — Ghost race
Official speed | 20.76 wpm (173.99 seconds elapsed during race) |
---|---|
Race Start | June 6, 2023 5:13:40pm UTC |
Race Finish | June 6, 2023 5:16:34pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 93.0% |
Points | 15.92 |
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.'; } } |