anshul (anshkool)

Race #33

View Pit Stop page for race #33 by anshkoolGhost race

View profile for anshul (anshkool)

Official speed 35.58 wpm (101.52 seconds elapsed during race)
Race Start September 6, 2022 5:41:32am UTC
Race Finish September 6, 2022 5:43:14am UTC
Outcome No win (2 of 3)
Accuracy 95.0%
Points 27.28
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.'; } }