View Pit Stop page for race #19 by anushrao — Ghost race
View profile for Anush Rao (anushrao)
Official speed | 51.74 wpm (69.81 seconds elapsed during race) |
---|---|
Race Start | June 23, 2023 2:02:10pm UTC |
Race Finish | June 23, 2023 2:03:20pm UTC |
Outcome | Win (1 of 2) |
Accuracy | 96.0% |
Points | 39.67 |
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.'; } } |