police (styrofoam)

Race #161

View Pit Stop page for race #161 by styrofoamGhost race

View profile for police (styrofoam)

Official speed 57.32 wpm (58.62 seconds elapsed during race)
Race Start January 27, 2019 11:23:36pm UTC
Race Finish January 27, 2019 11:24:35pm UTC
Outcome No win (4 of 5)
Opponents 1. sidd_ (133.59 wpm)
2. delirious (87.36 wpm)
3. hellothen (61.68 wpm)
5. poem (53.77 wpm)
Accuracy 96.0%
Points 43.95
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.'; } }