View Pit Stop page for race #1 by alianda — Ghost race
View profile for playing typeracer dot com (alianda)
| Official speed | 35.91 wpm (100.58 seconds elapsed during race) |
|---|---|
| Race Start | March 30, 2021 8:18:00pm UTC |
| Race Finish | March 30, 2021 8:19:40pm UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 94.0% |
| Points | 27.53 |
| 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.'; } } |