View Pit Stop page for race #5 by nikhilnick — Ghost race
View profile for Nikhil Patil (nikhilnick)
| Official speed | 30.81 wpm (117.23 seconds elapsed during race) | 
|---|---|
| Race Start | February 3, 2022 6:38:29am UTC | 
| Race Finish | February 3, 2022 6:40:26am UTC | 
| Outcome | Win (1 of 3) | 
| Accuracy | 95.0% | 
| Points | 23.62 | 
| 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.'; } } |