spondunoob (spondulix)

Race #461

View Pit Stop page for race #461 by spondulixGhost race

View profile for spondunoob (spondulix)

Official speed 104.46 wpm (32.17 seconds elapsed during race)
Race Start November 13, 2019 12:19:41am UTC
Race Finish November 13, 2019 12:20:14am UTC
Outcome Win (1 of 2)
Opponents 2. melikepi (65.53 wpm)
Accuracy 98.0%
Points 80.09
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.'; } }