Achromatic - youtu.be/VuzE718Ac1M (bladevampirek)

Race #25

View Pit Stop page for race #25 by bladevampirekGhost race

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

Official speed 56.43 wpm (59.54 seconds elapsed during race)
Race Start March 30, 2019 7:18:54am UTC
Race Finish March 30, 2019 7:19:54am UTC
Outcome Win (1 of 2)
Opponents 2. himynameisrohitsingh (44.58 wpm)
Accuracy 96.0%
Points 43.26
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.'; } }