mairzydoats_mason (mairzydoats_mason)

Race #581

View Pit Stop page for race #581 by mairzydoats_masonGhost race

View profile for mairzydoats_mason (mairzydoats_mason)

Official speed 47.28 wpm (71.07 seconds elapsed during race)
Race Start December 21, 2020 8:34:53pm UTC
Race Finish December 21, 2020 8:36:04pm UTC
Outcome No win (3 of 3)
Accuracy 99.0%
Points 36.24
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.'; } }