Sachin Sharma (ragemodeon)

Race #21

View Pit Stop page for race #21 by ragemodeonGhost race

View profile for Sachin Sharma (ragemodeon)

Official speed 69.13 wpm (52.25 seconds elapsed during race)
Race Start July 9, 2022 2:37:46pm UTC
Race Finish July 9, 2022 2:38:38pm UTC
Outcome No win (2 of 3)
Accuracy 96.0%
Points 53.00
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.'; } }