View Pit Stop page for race #9 by zzdroxbazz — Ghost race
View profile for Sergio Deybit Colque berazain (zzdroxbazz)
| Official speed | 25.21 wpm (143.28 seconds elapsed during race) |
|---|---|
| Race Start | September 25, 2024 2:12:17am UTC |
| Race Finish | September 25, 2024 2:14:41am UTC |
| Outcome | No win (2 of 2) |
| Accuracy | 95.0% |
| Points | 19.32 |
| 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.'; } } |