police (styrofoam)

Race #89

View Pit Stop page for race #89 by styrofoamGhost race

View profile for police (styrofoam)

Official speed 72.37 wpm (46.43 seconds elapsed during race)
Race Start November 1, 2018 3:14:17am UTC
Race Finish November 1, 2018 3:15:03am UTC
Outcome Win (1 of 2)
Opponents 2. atthetop (69.27 wpm)
Accuracy 96.0%
Points 55.48
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.'; } }