riddle (riddlee)

Race #3

View Pit Stop page for race #3 by riddleeGhost race

View profile for riddle (riddlee)

Official speed 41.29 wpm (81.38 seconds elapsed during race)
Race Start July 24, 2019 3:40:02am UTC
Race Finish July 24, 2019 3:41:23am UTC
Outcome No win (2 of 3)
Opponents 1. spondulix (97.13 wpm)
Accuracy 96.0%
Points 31.66
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.'; } }