mairzydoats_mason (mairzydoats_mason)

Race #585

View Pit Stop page for race #585 by mairzydoats_masonGhost race

View profile for mairzydoats_mason (mairzydoats_mason)

Official speed 61.99 wpm (54.20 seconds elapsed during race)
Race Start December 31, 2020 7:14:31pm UTC
Race Finish December 31, 2020 7:15:25pm UTC
Outcome Win (1 of 3)
Accuracy 100.0%
Points 47.53
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.'; } }