안드레아 (o________o)

Race #20

View Pit Stop page for race #20 by o________oGhost race

View profile for 안드레아 (o________o)

Official speed 78.43 wpm (42.84 seconds elapsed during race)
Race Start September 15, 2020 11:24:08am UTC
Race Finish September 15, 2020 11:24:51am UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 60.13
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.'; } }