View Pit Stop page for race #30 by a_anand_12 — Ghost race
View profile for abhishek (a_anand_12)
Official speed | 18.50 wpm (195.24 seconds elapsed during race) |
---|---|
Race Start | December 12, 2022 12:34:56am UTC |
Race Finish | December 12, 2022 12:38:11am UTC |
Outcome | No win (3 of 3) |
Accuracy | 92.0% |
Points | 14.18 |
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.'; } } |