View Pit Stop page for race #9 by mutasim_2001 — Ghost race
View profile for Mutasim Mualimi (mutasim_2001)
Official speed | 41.98 wpm (86.04 seconds elapsed during race) |
---|---|
Race Start | June 7, 2023 5:54:30am UTC |
Race Finish | June 7, 2023 5:55:56am UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 32.18 |
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.'; } } |