Mohamad (mohamadasghari)

Race #7

View Pit Stop page for race #7 by mohamadasghariGhost race

View profile for Mohamad (mohamadasghari)

Official speed 47.10 wpm (76.69 seconds elapsed during race)
Race Start February 4, 2022 12:45:05pm UTC
Race Finish February 4, 2022 12:46:21pm UTC
Outcome No win (2 of 3)
Accuracy 94.0%
Points 36.11
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.'; } }