Oviyan Gandhi (syck)

Race #2

View Pit Stop page for race #2 by syckGhost race

View profile for Oviyan Gandhi (syck)

Official speed 64.01 wpm (56.43 seconds elapsed during race)
Race Start July 11, 2024 8:51:05pm UTC
Race Finish July 11, 2024 8:52:02pm UTC
Outcome Win (1 of 2)
Accuracy 97.0%
Points 49.08
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.'; } }