View Pit Stop page for race #6 by sanz80 — Ghost race
View profile for Suman Tiwari (sanz80)
Official speed | 42.78 wpm (84.43 seconds elapsed during race) |
---|---|
Race Start | June 30, 2023 3:42:42am UTC |
Race Finish | June 30, 2023 3:44:06am UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 32.80 |
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.'; } } |