Luka (the_lukec)

Race #2

View Pit Stop page for race #2 by the_lukecGhost race

View profile for Luka (the_lukec)

Official speed 59.21 wpm (61.00 seconds elapsed during race)
Race Start June 4, 2023 9:23:16am UTC
Race Finish June 4, 2023 9:24:17am UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 45.40
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.'; } }