GINOO AND FLANEUR I LOVE YOU TOO (mako640)

Race #21

View Pit Stop page for race #21 by mako640Ghost race

View profile for GINOO AND FLANEUR I LOVE YOU TOO (mako640)

Official speed 123.89 wpm (27.12 seconds elapsed during race)
Race Start July 20, 2019 8:45:05pm UTC
Race Finish July 20, 2019 8:45:32pm UTC
Outcome Win (1 of 4)
Opponents 2. keegant (95.51 wpm)
3. spondulix (83.87 wpm)
4. storm (63.41 wpm)
Accuracy 99.0%
Points 94.99
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.'; } }