View Pit Stop page for race #4 by lluissuros — Ghost race
View profile for lluis (lluissuros)
Official speed | 12.92 wpm (279.57 seconds elapsed during race) |
---|---|
Race Start | March 9, 2021 1:48:56pm UTC |
Race Finish | March 9, 2021 1:53:35pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 92.0% |
Points | 9.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.'; } } |