police (styrofoam)

Race #44

View Pit Stop page for race #44 by styrofoamGhost race

View profile for police (styrofoam)

Official speed 67.34 wpm (49.90 seconds elapsed during race)
Race Start October 31, 2018 11:17:05pm UTC
Race Finish October 31, 2018 11:17:55pm UTC
Outcome Win (1 of 2)
Opponents 2. atthetop (64.21 wpm)
Accuracy 96.0%
Points 51.63
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.'; } }