ILoveLofi (ginpaku)

Race #3

View Pit Stop page for race #3 by ginpakuGhost race

View profile for ILoveLofi (ginpaku)

Official speed 37.79 wpm (95.58 seconds elapsed during race)
Race Start June 7, 2023 12:42:29am UTC
Race Finish June 7, 2023 12:44:05am UTC
Outcome No win (3 of 3)
Accuracy 91.0%
Points 28.97
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.'; } }