View Pit Stop page for race #32 by rollno14 — Ghost race
View profile for Free Palestine (rollno14)
Official speed | 56.86 wpm (63.52 seconds elapsed during race) |
---|---|
Race Start | July 1, 2021 11:35:57am UTC |
Race Finish | July 1, 2021 11:37:01am UTC |
Outcome | No win (2 of 3) |
Accuracy | 98.0% |
Points | 43.60 |
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.'; } } |