bruh (zeloceb)

Race #2

View Pit Stop page for race #2 by zelocebGhost race

View profile for bruh (zeloceb)

Official speed 23.08 wpm (156.50 seconds elapsed during race)
Race Start January 24, 2022 3:11:07pm UTC
Race Finish January 24, 2022 3:13:44pm UTC
Outcome No win (2 of 3)
Accuracy 96.0%
Points 17.69
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.'; } }