View Pit Stop page for race #332 by mayham92 — Ghost race
View profile for Mikhail (mayham92)
Official speed | 61.69 wpm (58.55 seconds elapsed during race) |
---|---|
Race Start | November 30, 2021 4:03:05pm UTC |
Race Finish | November 30, 2021 4:04:03pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 47.30 |
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.'; } } |