View Pit Stop page for race #3 by davidcaron — Ghost race
View profile for David (davidcaron)
| Official speed | 57.50 wpm (62.82 seconds elapsed during race) |
|---|---|
| Race Start | November 2, 2022 7:46:54pm UTC |
| Race Finish | November 2, 2022 7:47:57pm UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 97.0% |
| Points | 44.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.'; } } |