lili (lilihsu)

Race #9

View Pit Stop page for race #9 by lilihsuGhost race

View profile for lili (lilihsu)

Official speed 30.18 wpm (119.68 seconds elapsed during race)
Race Start October 28, 2025 12:55:17pm UTC
Race Finish October 28, 2025 12:57:17pm UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 23.14
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.'; } }