mohit bhawnani (mohit_bhawnani)

Race #20

View Pit Stop page for race #20 by mohit_bhawnaniGhost race

View profile for mohit bhawnani (mohit_bhawnani)

Official speed 34.05 wpm (106.08 seconds elapsed during race)
Race Start January 23, 2025 2:13:44pm UTC
Race Finish January 23, 2025 2:15:30pm UTC
Outcome No win (2 of 3)
Accuracy 95.0%
Points 26.11
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.'; } }