Karan Jain (karanjain18)

Race #24

View Pit Stop page for race #24 by karanjain18Ghost race

View profile for Karan Jain (karanjain18)

Official speed 44.97 wpm (74.72 seconds elapsed during race)
Race Start September 29, 2019 4:19:06pm UTC
Race Finish September 29, 2019 4:20:21pm UTC
Outcome No win (4 of 4)
Opponents 1. mairzydoats_mason (57.25 wpm)
Accuracy 95.0%
Points 34.48
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.'; } }