Naman (shadyskies)

Race #5

View Pit Stop page for race #5 by shadyskiesGhost race

View profile for Naman (shadyskies)

Official speed 33.81 wpm (106.83 seconds elapsed during race)
Race Start June 16, 2023 11:54:40am UTC
Race Finish June 16, 2023 11:56:27am UTC
Outcome No win (1 of 1)
Accuracy 89.0%
Points 25.92
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.'; } }