Mohamad (mohamadasghari)

Race #14

View Pit Stop page for race #14 by mohamadasghariGhost race

View profile for Mohamad (mohamadasghari)

Official speed 48.18 wpm (74.97 seconds elapsed during race)
Race Start February 6, 2022 3:00:49pm UTC
Race Finish February 6, 2022 3:02:04pm UTC
Outcome No win (2 of 3)
Accuracy 95.0%
Points 36.94
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.'; } }