tourist (touristhere)

Race #64

View Pit Stop page for race #64 by touristhereGhost race

View profile for tourist (touristhere)

Official speed 29.73 wpm (121.49 seconds elapsed during race)
Race Start April 9, 2024 11:27:19am UTC
Race Finish April 9, 2024 11:29:20am UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 22.79
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.'; } }