View Pit Stop page for race #2 by unsio — Ghost race
Official speed | 34.35 wpm (105.15 seconds elapsed during race) |
---|---|
Race Start | January 26, 2023 6:02:39pm UTC |
Race Finish | January 26, 2023 6:04:24pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 94.0% |
Points | 26.33 |
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.'; } } |