Adsd (kol123313)

Race #12

View Pit Stop page for race #12 by kol123313Ghost race

View profile for Adsd (kol123313)

Official speed 48.75 wpm (74.09 seconds elapsed during race)
Race Start May 4, 2021 6:26:35pm UTC
Race Finish May 4, 2021 6:27:49pm UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 37.37
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.'; } }