stuck@under100 (binaypau)

Race #1

View Pit Stop page for race #1 by binaypauGhost race

View profile for stuck@under100 (binaypau)

Official speed 35.15 wpm (102.76 seconds elapsed during race)
Race Start July 25, 2023 7:20:42am UTC
Race Finish July 25, 2023 7:22:25am UTC
Outcome No win (2 of 3)
Accuracy 96.0%
Points 26.95
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.'; } }