git_gud (git__gud)

Race #7

View Pit Stop page for race #7 by git__gudGhost race

View profile for git_gud (git__gud)

Official speed 30.38 wpm (118.89 seconds elapsed during race)
Race Start May 23, 2023 3:43:46pm UTC
Race Finish May 23, 2023 3:45:45pm UTC
Outcome No win (3 of 3)
Accuracy 91.0%
Points 23.29
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.'; } }