dvorak the supreme (drdilyor_)

Race #4

View Pit Stop page for race #4 by drdilyor_Ghost race

View profile for dvorak the supreme (drdilyor_)

Official speed 66.02 wpm (54.71 seconds elapsed during race)
Race Start March 21, 2022 7:24:05pm UTC
Race Finish March 21, 2022 7:25:00pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 50.61
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.'; } }