(sidd_)

Race #86

View Pit Stop page for race #86 by sidd_Ghost race

View profile for (sidd_)

Official speed 123.15 wpm (27.28 seconds elapsed during race)
Race Start February 1, 2019 1:05:10am UTC
Race Finish February 1, 2019 1:05:37am UTC
Outcome Win (1 of 3)
Opponents 2. mako640 (84.01 wpm)
3. delirious (81.71 wpm)
Accuracy 98.0%
Points 94.42
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.'; } }