ze (ze234)

Race #1

View Pit Stop page for race #1 by ze234Ghost race

View profile for ze (ze234)

Official speed 24.76 wpm (145.88 seconds elapsed during race)
Race Start July 31, 2023 1:37:44pm UTC
Race Finish July 31, 2023 1:40:10pm UTC
Outcome No win (3 of 3)
Accuracy 91.0%
Points 18.98
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.'; } }