thomas (thomascdh)

Race #16

View Pit Stop page for race #16 by thomascdhGhost race

View profile for thomas (thomascdh)

Official speed 40.61 wpm (88.94 seconds elapsed during race)
Race Start June 28, 2025 8:12:10pm UTC
Race Finish June 28, 2025 8:13:39pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 31.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.'; } }