Pranav Abraham (pranavabe)

Race #1

View Pit Stop page for race #1 by pranavabeGhost race

View profile for Pranav Abraham (pranavabe)

Official speed 40.87 wpm (88.38 seconds elapsed during race)
Race Start July 5, 2023 4:15:53pm UTC
Race Finish July 5, 2023 4:17:21pm UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 31.33
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.'; } }