Lannpha (lannpha)

Race #1

View Pit Stop page for race #1 by lannphaGhost race

View profile for Lannpha (lannpha)

Official speed 65.49 wpm (55.15 seconds elapsed during race)
Race Start November 18, 2020 7:52:08pm UTC
Race Finish November 18, 2020 7:53:03pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 50.21
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.'; } }