View Pit Stop page for race #1 by nikash_ — Ghost race
View profile for Navin (nikash_)
Official speed | 23.62 wpm (152.92 seconds elapsed during race) |
---|---|
Race Start | June 1, 2023 10:02:42am UTC |
Race Finish | June 1, 2023 10:05:15am UTC |
Outcome | Win (1 of 2) |
Accuracy | 91.0% |
Points | 18.10 |
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.'; } } |