Klaqz (klaqz)

Race #1

View Pit Stop page for race #1 by klaqzGhost race

View profile for Klaqz (klaqz)

Official speed 33.78 wpm (106.93 seconds elapsed during race)
Race Start July 10, 2023 9:21:10am UTC
Race Finish July 10, 2023 9:22:57am UTC
Outcome No win (3 of 3)
Accuracy 92.0%
Points 25.90
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.'; } }