Manuel (manguy0705)

Race #6

View Pit Stop page for race #6 by manguy0705Ghost race

View profile for Manuel (manguy0705)

Official speed 58.93 wpm (61.29 seconds elapsed during race)
Race Start June 26, 2023 9:19:07pm UTC
Race Finish June 26, 2023 9:20:08pm UTC
Outcome No win (2 of 3)
Accuracy 94.0%
Points 45.18
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.'; } }