View Pit Stop page for race #36 by rollno14 — Ghost race
View profile for Free Palestine (rollno14)
Official speed | 55.78 wpm (64.75 seconds elapsed during race) |
---|---|
Race Start | July 4, 2021 8:13:27am UTC |
Race Finish | July 4, 2021 8:14:32am UTC |
Outcome | No win (2 of 3) |
Accuracy | 98.0% |
Points | 42.77 |
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.'; } } |