Stea (fracticals)

Race #2

View Pit Stop page for race #2 by fracticalsGhost race

View profile for Stea (fracticals)

Official speed 64.12 wpm (56.33 seconds elapsed during race)
Race Start May 27, 2025 10:08:21am UTC
Race Finish May 27, 2025 10:09:17am UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 49.16
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.'; } }