Abhinav (typingcompany)

Race #73

View Pit Stop page for race #73 by typingcompanyGhost race

View profile for Abhinav (typingcompany)

Official speed 30.27 wpm (119.33 seconds elapsed during race)
Race Start June 3, 2023 9:29:59am UTC
Race Finish June 3, 2023 9:31:59am UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 23.21
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.'; } }