. (adarshthapa)

Race #31

View Pit Stop page for race #31 by adarshthapaGhost race

View profile for . (adarshthapa)

Official speed 40.56 wpm (82.84 seconds elapsed during race)
Race Start December 23, 2019 4:28:42pm UTC
Race Finish December 23, 2019 4:30:05pm UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 31.09
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.'; } }