police (styrofoam)

Race #146

View Pit Stop page for race #146 by styrofoamGhost race

View profile for police (styrofoam)

Official speed 83.49 wpm (40.24 seconds elapsed during race)
Race Start January 27, 2019 10:43:22pm UTC
Race Finish January 27, 2019 10:44:02pm UTC
Outcome No win (2 of 6)
Opponents 1. sidd_ (116.79 wpm)
3. delirious (74.97 wpm)
4. poem (53.35 wpm)
5. hellothen (50.09 wpm)
Accuracy 98.0%
Points 64.01
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.'; } }