View Pit Stop page for race #5 by m1voj — Ghost race
View profile for MivojBlazek (m1voj)
Official speed | 28.25 wpm (127.86 seconds elapsed during race) |
---|---|
Race Start | July 22, 2023 9:15:22pm UTC |
Race Finish | July 22, 2023 9:17:30pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 96.0% |
Points | 21.66 |
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.'; } } |