David (david_chen)

Race #23

View Pit Stop page for race #23 by david_chenGhost race

View profile for David (david_chen)

Official speed 35.55 wpm (101.60 seconds elapsed during race)
Race Start April 25, 2025 5:06:14pm UTC
Race Finish April 25, 2025 5:07:56pm UTC
Outcome No win (3 of 4)
Accuracy 94.0%
Points 27.26
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.'; } }