Aren (tl8xv)

Race #62

View Pit Stop page for race #62 by tl8xvGhost race

View profile for Aren (tl8xv)

Official speed 77.14 wpm (46.82 seconds elapsed during race)
Race Start May 23, 2023 2:40:33pm UTC
Race Finish May 23, 2023 2:41:20pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 59.14
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.'; } }