Clippy (jesspacito)

Race #1

View Pit Stop page for race #1 by jesspacitoGhost race

View profile for Clippy (jesspacito)

Official speed 24.18 wpm (149.38 seconds elapsed during race)
Race Start June 2, 2023 8:48:33pm UTC
Race Finish June 2, 2023 8:51:02pm UTC
Outcome No win (4 of 2)
Accuracy 97.0%
Points 18.54
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.'; } }