(keegant)

Race #102

View Pit Stop page for race #102 by keegantGhost race

View profile for (keegant)

Official speed 95.51 wpm (35.18 seconds elapsed during race)
Race Start July 20, 2019 8:45:05pm UTC
Race Finish July 20, 2019 8:45:41pm UTC
Outcome No win (2 of 4)
Opponents 1. mako640 (123.89 wpm)
3. spondulix (83.87 wpm)
4. storm (63.41 wpm)
Accuracy 97.0%
Points 73.23
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.'; } }