Achromatic - youtu.be/VuzE718Ac1M (bladevampirek)

Race #20

View Pit Stop page for race #20 by bladevampirekGhost race

View profile for Achromatic - youtu.be/VuzE718Ac1M (bladevampirek)

Official speed 57.04 wpm (58.91 seconds elapsed during race)
Race Start March 30, 2019 7:08:01am UTC
Race Finish March 30, 2019 7:08:59am UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 43.73
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.'; } }