discord.gg/typeracer (landarian)

Race #240

View Pit Stop page for race #240 by landarianGhost race

View profile for discord.gg/typeracer (landarian)

Official speed 93.98 wpm (35.75 seconds elapsed during race)
Race Start November 2, 2020 5:32:43pm UTC
Race Finish November 2, 2020 5:33:19pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 72.05
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.'; } }