View Pit Stop page for race #7 by karlos_nikov — Ghost race
View profile for ritik (karlos_nikov)
Official speed | 14.40 wpm (250.83 seconds elapsed during race) |
---|---|
Race Start | August 2, 2023 7:25:57am UTC |
Race Finish | August 2, 2023 7:30:08am UTC |
Outcome | Win (1 of 2) |
Accuracy | 91.0% |
Points | 11.04 |
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.'; } } |