police (styrofoam)

Race #76

View Pit Stop page for race #76 by styrofoamGhost race

View profile for police (styrofoam)

Official speed 73.53 wpm (45.70 seconds elapsed during race)
Race Start November 1, 2018 2:50:54am UTC
Race Finish November 1, 2018 2:51:40am UTC
Outcome Win (1 of 2)
Opponents 2. atthetop (66.43 wpm)
Accuracy 97.0%
Points 56.38
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.'; } }