View Pit Stop page for race #1 by theflokin — Ghost race
View profile for Matheus (theflokin)
Official speed | 68.45 wpm (52.77 seconds elapsed during race) |
---|---|
Race Start | June 10, 2023 3:59:52am UTC |
Race Finish | June 10, 2023 4:00:45am UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 52.48 |
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.'; } } |