tstats[mm_food] (mm_food)

Race #2

View Pit Stop page for race #2 by mm_foodGhost race

View profile for tstats[mm_food] (mm_food)

Official speed 63.76 wpm (56.65 seconds elapsed during race)
Race Start August 22, 2023 3:23:14am UTC
Race Finish August 22, 2023 3:24:10am UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 48.89
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.'; } }