Karan Jain (karanjain18)

Race #235

View Pit Stop page for race #235 by karanjain18Ghost race

View profile for Karan Jain (karanjain18)

Official speed 58.87 wpm (57.07 seconds elapsed during race)
Race Start April 5, 2020 11:11:06am UTC
Race Finish April 5, 2020 11:12:03am UTC
Outcome No win (3 of 3)
Accuracy 97.0%
Points 45.13
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.'; } }