View Pit Stop page for race #240 by butterflydns — Ghost race
View profile for ButterflyDNS (butterflydns)
Official speed | 50.53 wpm (71.48 seconds elapsed during race) |
---|---|
Race Start | August 9, 2023 1:28:30pm UTC |
Race Finish | August 9, 2023 1:29:42pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 97.0% |
Points | 38.74 |
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.'; } } |