View Pit Stop page for race #1 by mjakot — Ghost race
View profile for Mjakot (mjakot)
Official speed | 29.46 wpm (122.61 seconds elapsed during race) |
---|---|
Race Start | July 11, 2023 3:54:04pm UTC |
Race Finish | July 11, 2023 3:56:07pm UTC |
Outcome | No win (2 of 2) |
Accuracy | 94.0% |
Points | 22.59 |
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.'; } } |