View Pit Stop page for race #7 by bhangu_05 — Ghost race
View profile for Amarpreet (bhangu_05)
Official speed | 27.88 wpm (129.56 seconds elapsed during race) |
---|---|
Race Start | November 9, 2021 3:39:24am UTC |
Race Finish | November 9, 2021 3:41:33am UTC |
Outcome | No win (3 of 3) |
Accuracy | 94.0% |
Points | 21.37 |
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.'; } } |