View Pit Stop page for race #15 by sdr4wkc48 — Ghost race
View profile for sdr4wkc48 (sdr4wkc48)
Official speed | 51.41 wpm (70.26 seconds elapsed during race) |
---|---|
Race Start | February 13, 2023 12:56:47pm UTC |
Race Finish | February 13, 2023 12:57:57pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 39.42 |
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.'; } } |