L.in.k (xquyen)

Race #165

View Pit Stop page for race #165 by xquyenGhost race

View profile for L.in.k (xquyen)

Official speed 62.46 wpm (57.83 seconds elapsed during race)
Race Start August 20, 2023 9:36:17am UTC
Race Finish August 20, 2023 9:37:15am UTC
Outcome Win (1 of 2)
Opponents 2. franciscolopezsancho (51.58 wpm)
Accuracy 97.0%
Points 47.89
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.'; } }