(sidd_)

Race #40

View Pit Stop page for race #40 by sidd_Ghost race

View profile for (sidd_)

Official speed 116.79 wpm (28.77 seconds elapsed during race)
Race Start January 27, 2019 10:43:22pm UTC
Race Finish January 27, 2019 10:43:50pm UTC
Outcome Win (1 of 6)
Opponents 2. styrofoam (83.49 wpm)
3. delirious (74.97 wpm)
4. poem (53.35 wpm)
5. hellothen (50.09 wpm)
Accuracy 99.0%
Points 89.54
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.'; } }