View Pit Stop page for race #10 by userzin — Ghost race
View profile for Userzin (userzin)
Official speed | 52.81 wpm (68.40 seconds elapsed during race) |
---|---|
Race Start | September 22, 2021 7:11:35pm UTC |
Race Finish | September 22, 2021 7:12:43pm UTC |
Outcome | No win (1 of 1) |
Accuracy | 95.0% |
Points | 40.49 |
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.'; } } |