police (styrofoam)

Race #108

View Pit Stop page for race #108 by styrofoamGhost race

View profile for police (styrofoam)

Official speed 71.59 wpm (46.93 seconds elapsed during race)
Race Start November 1, 2018 3:46:09pm UTC
Race Finish November 1, 2018 3:46:56pm UTC
Outcome Win (1 of 2)
Opponents 2. hyper_racer (41.14 wpm)
Accuracy 97.0%
Points 54.88
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.'; } }