View Pit Stop page for race #1 by imhidayat — Ghost race
View profile for Feynex (imhidayat)
Official speed | 50.54 wpm (71.47 seconds elapsed during race) |
---|---|
Race Start | December 22, 2022 8:04:22am UTC |
Race Finish | December 22, 2022 8:05:34am UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 38.75 |
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.'; } } |