View Pit Stop page for race #3 by bennibm — Ghost race
View profile for Benjamin Mehl (bennibm)
Official speed | 42.56 wpm (84.87 seconds elapsed during race) |
---|---|
Race Start | August 7, 2023 8:10:15am UTC |
Race Finish | August 7, 2023 8:11:40am UTC |
Outcome | No win (3 of 3) |
Accuracy | 95.0% |
Points | 32.63 |
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.'; } } |