Pink Mutt (frugalmussel)

Race #1

View Pit Stop page for race #1 by frugalmusselGhost race

View profile for Pink Mutt (frugalmussel)

Official speed 37.56 wpm (89.46 seconds elapsed during race)
Race Start November 20, 2020 1:26:34am UTC
Race Finish November 20, 2020 1:28:04am UTC
Outcome No win (3 of 3)
Accuracy 93.0%
Points 28.80
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.'; } }