View Pit Stop page for race #1 by inscrutablecoy — Ghost race
View profile for Coy (inscrutablecoy)
Official speed | 39.33 wpm (91.84 seconds elapsed during race) |
---|---|
Race Start | June 22, 2023 6:40:56pm UTC |
Race Finish | June 22, 2023 6:42:28pm UTC |
Outcome | Win (1 of 2) |
Opponents |
2. khaled_ataa (34.77 wpm) |
Accuracy | 94.0% |
Points | 30.15 |
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.'; } } |