spondunoob (spondulix)

Race #304

View Pit Stop page for race #304 by spondulixGhost race

View profile for spondunoob (spondulix)

Official speed 79.70 wpm (42.16 seconds elapsed during race)
Race Start August 8, 2019 3:13:49am UTC
Race Finish August 8, 2019 3:14:32am UTC
Outcome No win (2 of 4)
Opponents 1. arc_sec (87.71 wpm)
Accuracy 96.0%
Points 61.10
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.'; } }