Harshal Patil (harshalpatil)

Race #1

View Pit Stop page for race #1 by harshalpatilGhost race

View profile for Harshal Patil (harshalpatil)

Official speed 30.85 wpm (117.08 seconds elapsed during race)
Race Start May 5, 2024 10:07:24am UTC
Race Finish May 5, 2024 10:09:21am UTC
Outcome No win (3 of 3)
Accuracy 91.0%
Points 23.65
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.'; } }