too much lag (actuallyaccurate4life)

Race #234

View Pit Stop page for race #234 by actuallyaccurate4lifeGhost race

View profile for too much lag (actuallyaccurate4life)

Official speed 68.17 wpm (49.29 seconds elapsed during race)
Race Start August 6, 2019 12:19:46pm UTC
Race Finish August 6, 2019 12:20:35pm UTC
Outcome Win (1 of 3)
Accuracy 100.0%
Points 52.27
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.'; } }