View Pit Stop page for race #5 by deputyderpy — Ghost race
View profile for DeputyDerpy (deputyderpy)
| Official speed | 45.76 wpm (78.93 seconds elapsed during race) |
|---|---|
| Race Start | February 17, 2023 5:45:58am UTC |
| Race Finish | February 17, 2023 5:47:17am UTC |
| Outcome | No win (3 of 3) |
| Accuracy | 94.0% |
| Points | 35.08 |
| 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.'; } } |