View Pit Stop page for race #320 by karanjain18 — Ghost race
View profile for Karan Jain (karanjain18)
Official speed | 64.06 wpm (52.45 seconds elapsed during race) |
---|---|
Race Start | May 1, 2020 2:05:02pm UTC |
Race Finish | May 1, 2020 2:05:54pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 97.0% |
Points | 49.12 |
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.'; } } |