View Pit Stop page for race #12 by atduffaut — Ghost race
View profile for Alex (atduffaut)
Official speed | 52.36 wpm (68.98 seconds elapsed during race) |
---|---|
Race Start | August 2, 2023 6:40:29pm UTC |
Race Finish | August 2, 2023 6:41:38pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 95.0% |
Points | 40.14 |
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.'; } } |