Slowest (briandoppler)

Race #10

View Pit Stop page for race #10 by briandopplerGhost race

View profile for Slowest (briandoppler)

Official speed 61.12 wpm (59.10 seconds elapsed during race)
Race Start May 26, 2022 7:23:11pm UTC
Race Finish May 26, 2022 7:24:10pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 46.86
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.'; } }