View Pit Stop page for race #1 by katyaa0_o — Ghost race
View profile for katyaa0_o (katyaa0_o)
Official speed | 31.83 wpm (113.48 seconds elapsed during race) |
---|---|
Race Start | June 15, 2023 1:45:52pm UTC |
Race Finish | June 15, 2023 1:47:45pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 24.40 |
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.'; } } |