police (styrofoam)

Race #67

View Pit Stop page for race #67 by styrofoamGhost race

View profile for police (styrofoam)

Official speed 77.75 wpm (43.22 seconds elapsed during race)
Race Start October 31, 2018 11:50:41pm UTC
Race Finish October 31, 2018 11:51:24pm UTC
Outcome Win (1 of 2)
Opponents 2. atthetop (72.08 wpm)
Accuracy 97.0%
Points 59.61
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.'; } }