Marshall (mmmooore)

Race #3

View Pit Stop page for race #3 by mmmoooreGhost race

View profile for Marshall (mmmooore)

Official speed 60.08 wpm (55.93 seconds elapsed during race)
Race Start December 11, 2019 3:03:54am UTC
Race Finish December 11, 2019 3:04:50am UTC
Outcome Win (1 of 4)
Opponents 2. epixaid (50.81 wpm)
3. blendyz (40.19 wpm)
Accuracy 95.0%
Points 46.06
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.'; } }