Ioan (ioans)

Race #27

View Pit Stop page for race #27 by ioansGhost race

View profile for Ioan (ioans)

Official speed 34.20 wpm (105.61 seconds elapsed during race)
Race Start January 25, 2023 5:21:35am UTC
Race Finish January 25, 2023 5:23:20am UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 26.22
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.'; } }