Gby (gbwhy)

Race #3

View Pit Stop page for race #3 by gbwhyGhost race

View profile for Gby (gbwhy)

Official speed 48.88 wpm (73.90 seconds elapsed during race)
Race Start May 31, 2023 1:34:45am UTC
Race Finish May 31, 2023 1:35:59am UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 37.47
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.'; } }