melvin (melvink)

Race #46

View Pit Stop page for race #46 by melvinkGhost race

View profile for melvin (melvink)

Official speed 35.84 wpm (100.78 seconds elapsed during race)
Race Start May 27, 2023 4:19:32am UTC
Race Finish May 27, 2023 4:21:12am UTC
Outcome No win (2 of 3)
Accuracy 97.0%
Points 27.48
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.'; } }