(sidd_)

Race #89

View Pit Stop page for race #89 by sidd_Ghost race

View profile for (sidd_)

Official speed 115.68 wpm (29.05 seconds elapsed during race)
Race Start February 1, 2019 1:09:30am UTC
Race Finish February 1, 2019 1:09:59am UTC
Outcome Win (1 of 3)
Opponents 2. mako640 (104.37 wpm)
3. delirious (74.82 wpm)
Accuracy 98.0%
Points 88.69
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.'; } }