View Pit Stop page for race #23 by john_mat — Ghost race
View profile for john mat (john_mat)
Official speed | 31.95 wpm (113.05 seconds elapsed during race) |
---|---|
Race Start | February 4, 2023 8:04:08am UTC |
Race Finish | February 4, 2023 8:06:01am UTC |
Outcome | No win (2 of 3) |
Accuracy | 94.0% |
Points | 24.49 |
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.'; } } |