View Pit Stop page for race #2 by isis076 — Ghost race
View profile for isis (isis076)
Official speed | 30.84 wpm (117.12 seconds elapsed during race) |
---|---|
Race Start | June 2, 2023 12:32:54pm UTC |
Race Finish | June 2, 2023 12:34:51pm UTC |
Outcome | No win (2 of 2) |
Opponents |
1. julie2605 (32.01 wpm) |
Accuracy | 96.0% |
Points | 23.64 |
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.'; } } |