View Pit Stop page for race #174 by mayham92 — Ghost race
View profile for Mikhail (mayham92)
Official speed | 49.89 wpm (72.40 seconds elapsed during race) |
---|---|
Race Start | November 7, 2021 2:11:44pm UTC |
Race Finish | November 7, 2021 2:12:56pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 96.0% |
Points | 38.25 |
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.'; } } |