Fernando (frn4n)

Race #7

View Pit Stop page for race #7 by frn4nGhost race

View profile for Fernando (frn4n)

Official speed 54.94 wpm (65.74 seconds elapsed during race)
Race Start June 23, 2023 7:46:16am UTC
Race Finish June 23, 2023 7:47:22am UTC
Outcome No win (3 of 3)
Accuracy 92.0%
Points 42.12
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.'; } }