qiTsuk (qitsuk)

Race #2

View Pit Stop page for race #2 by qitsukGhost race

View profile for qiTsuk (qitsuk)

Official speed 39.36 wpm (91.77 seconds elapsed during race)
Race Start June 9, 2023 9:29:43am UTC
Race Finish June 9, 2023 9:31:15am UTC
Outcome No win (3 of 3)
Accuracy 92.0%
Points 30.18
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.'; } }