God_did (briankayega)

Race #274

View Pit Stop page for race #274 by briankayegaGhost race

View profile for God_did (briankayega)

Official speed 54.77 wpm (65.95 seconds elapsed during race)
Race Start January 30, 2024 3:27:35pm UTC
Race Finish January 30, 2024 3:28:41pm UTC
Outcome No win (2 of 3)
Accuracy 97.0%
Points 41.99
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.'; } }