GINOO AND FLANEUR I LOVE YOU TOO (mako640)

Race #15

View Pit Stop page for race #15 by mako640Ghost race

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

Official speed 121.95 wpm (27.55 seconds elapsed during race)
Race Start July 20, 2019 8:35:36pm UTC
Race Finish July 20, 2019 8:36:04pm UTC
Outcome Win (1 of 4)
Opponents 2. keegant (79.80 wpm)
3. spondulix (79.74 wpm)
4. storm (62.55 wpm)
Accuracy 98.0%
Points 93.49
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.'; } }