View Pit Stop page for race #10 by tuberkulose_eddy — Ghost race
View profile for Eliza (tuberkulose_eddy)
Official speed | 45.92 wpm (78.66 seconds elapsed during race) |
---|---|
Race Start | January 2, 2022 10:00:52pm UTC |
Race Finish | January 2, 2022 10:02:11pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 35.20 |
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.'; } } |