kadomaniac (big_time_snail)

Race #58

View Pit Stop page for race #58 by big_time_snailGhost race

View profile for kadomaniac (big_time_snail)

Official speed 63.15 wpm (53.21 seconds elapsed during race)
Race Start July 4, 2019 2:18:13pm UTC
Race Finish July 4, 2019 2:19:06pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 48.42
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.'; } }