View Pit Stop page for race #24 by carbonmonkey — Ghost race
View profile for carbonmonkey (carbonmonkey)
Official speed | 32.48 wpm (111.21 seconds elapsed during race) |
---|---|
Race Start | March 9, 2023 8:22:42pm UTC |
Race Finish | March 9, 2023 8:24:33pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 24.90 |
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.'; } } |