Faisal (md_faisal)

Race #38

View Pit Stop page for race #38 by md_faisalGhost race

View profile for Faisal (md_faisal)

Official speed 63.63 wpm (56.77 seconds elapsed during race)
Race Start April 8, 2023 5:24:31pm UTC
Race Finish April 8, 2023 5:25:28pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 48.78
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.'; } }