NSM101 (nsm101)

Race #9

View Pit Stop page for race #9 by nsm101Ghost race

View profile for NSM101 (nsm101)

Official speed 21.40 wpm (168.78 seconds elapsed during race)
Race Start May 29, 2025 12:58:30pm UTC
Race Finish May 29, 2025 1:01:18pm UTC
Outcome Win (1 of 3)
Accuracy 92.0%
Points 16.41
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.'; } }