View Pit Stop page for race #22 by prince_zox — Ghost race
View profile for P ʀ ɪ ɴ ᴄ ᴇ (prince_zox)
Official speed | 26.51 wpm (136.25 seconds elapsed during race) |
---|---|
Race Start | June 8, 2023 11:58:28am UTC |
Race Finish | June 8, 2023 12:00:45pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 20.33 |
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.'; } } |