View Pit Stop page for race #91 by sidd_ — Ghost race
Official speed | 123.19 wpm (27.27 seconds elapsed during race) |
---|---|
Race Start | February 1, 2019 1:11:41am UTC |
Race Finish | February 1, 2019 1:12:08am UTC |
Outcome | Win (1 of 2) |
Opponents |
2. delirious (96.20 wpm) |
Accuracy | 98.0% |
Points | 94.45 |
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.'; } } |