tanon (tanon710s)

Race #87

View Pit Stop page for race #87 by tanon710sGhost race

View profile for tanon (tanon710s)

Official speed 99.24 wpm (33.86 seconds elapsed during race)
Race Start February 25, 2019 3:09:32pm UTC
Race Finish February 25, 2019 3:10:05pm UTC
Outcome No win (2 of 2)
Opponents 1. permil (108.52 wpm)
Accuracy 98.0%
Points 76.08
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.'; } }