leon (leonzalion)

Race #26

View Pit Stop page for race #26 by leonzalionGhost race

View profile for leon (leonzalion)

Official speed 95.48 wpm (37.83 seconds elapsed during race)
Race Start May 25, 2021 7:53:13pm UTC
Race Finish May 25, 2021 7:53:50pm UTC
Outcome No win (1 of 1)
Accuracy 97.0%
Points 73.20
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.'; } }