Mohammad (alamin_typist)

Race #32

View Pit Stop page for race #32 by alamin_typistGhost race

View profile for Mohammad (alamin_typist)

Official speed 61.89 wpm (54.29 seconds elapsed during race)
Race Start November 17, 2018 6:48:55am UTC
Race Finish November 17, 2018 6:49:50am UTC
Outcome No win (2 of 3)
Accuracy 98.0%
Points 47.45
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.'; } }