. (adarshthapa)

Race #43

View Pit Stop page for race #43 by adarshthapaGhost race

View profile for . (adarshthapa)

Official speed 43.93 wpm (76.49 seconds elapsed during race)
Race Start December 24, 2019 3:46:54am UTC
Race Finish December 24, 2019 3:48:10am UTC
Outcome No win (3 of 3)
Accuracy 93.0%
Points 33.68
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.'; } }