Suren (strongsuren)

Race #57

View Pit Stop page for race #57 by strongsurenGhost race

View profile for Suren (strongsuren)

Official speed 41.55 wpm (86.93 seconds elapsed during race)
Race Start September 12, 2023 10:36:48am UTC
Race Finish September 12, 2023 10:38:15am UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 31.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.'; } }