permil (permil)

Race #103

View Pit Stop page for race #103 by permilGhost race

View profile for permil (permil)

Official speed 108.52 wpm (30.96 seconds elapsed during race)
Race Start February 25, 2019 3:09:32pm UTC
Race Finish February 25, 2019 3:10:03pm UTC
Outcome Win (1 of 2)
Opponents 2. tanon710s (99.24 wpm)
Accuracy 100.0%
Points 83.20
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.'; } }