melvin (melvink)

Race #95

View Pit Stop page for race #95 by melvinkGhost race

View profile for melvin (melvink)

Official speed 40.31 wpm (89.61 seconds elapsed during race)
Race Start May 31, 2023 6:42:26pm UTC
Race Finish May 31, 2023 6:43:55pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 30.91
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.'; } }