tanon (tanon710s)

Race #93

View Pit Stop page for race #93 by tanon710sGhost race

View profile for tanon (tanon710s)

Official speed 97.56 wpm (34.44 seconds elapsed during race)
Race Start February 25, 2019 3:14:17pm UTC
Race Finish February 25, 2019 3:14:52pm UTC
Outcome Win (1 of 2)
Opponents 2. permil (97.39 wpm)
Accuracy 97.0%
Points 74.79
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.'; } }