divyanshu maurya (divyanshu_m007)

Race #142

View Pit Stop page for race #142 by divyanshu_m007Ghost race

View profile for divyanshu maurya (divyanshu_m007)

Official speed 22.62 wpm (159.68 seconds elapsed during race)
Race Start July 13, 2023 9:35:55am UTC
Race Finish July 13, 2023 9:38:34am UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 17.34
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.'; } }