View Pit Stop page for race #6 by prince_zox — Ghost race
View profile for P ʀ ɪ ɴ ᴄ ᴇ (prince_zox)
Official speed | 24.38 wpm (148.15 seconds elapsed during race) |
---|---|
Race Start | June 2, 2023 1:40:41pm UTC |
Race Finish | June 2, 2023 1:43:10pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 93.0% |
Points | 18.69 |
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.'; } } |