Stella (stellarluminant)

Race #3

View Pit Stop page for race #3 by stellarluminantGhost race

View profile for Stella (stellarluminant)

Official speed 52.65 wpm (63.82 seconds elapsed during race)
Race Start November 8, 2018 6:53:18pm UTC
Race Finish November 8, 2018 6:54:22pm UTC
Outcome No win (3 of 3)
Accuracy 97.0%
Points 40.36
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.'; } }