Caffebar kb lmao! (baccupacc)

Race #3

View Pit Stop page for race #3 by baccupaccGhost race

View profile for Caffebar kb lmao! (baccupacc)

Official speed 59.14 wpm (61.08 seconds elapsed during race)
Race Start July 1, 2022 8:00:16am UTC
Race Finish July 1, 2022 8:01:17am UTC
Outcome No win (3 of 3)
Accuracy 93.0%
Points 45.34
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.'; } }