Benjamin Mehl (bennibm)

Race #3

View Pit Stop page for race #3 by bennibmGhost race

View profile for Benjamin Mehl (bennibm)

Official speed 42.56 wpm (84.87 seconds elapsed during race)
Race Start August 7, 2023 8:10:15am UTC
Race Finish August 7, 2023 8:11:40am UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 32.63
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.'; } }