Vũ (khanhyeuquan)

Race #18

View Pit Stop page for race #18 by khanhyeuquanGhost race

View profile for Vũ (khanhyeuquan)

Official speed 59.18 wpm (61.03 seconds elapsed during race)
Race Start May 29, 2023 8:26:40am UTC
Race Finish May 29, 2023 8:27:41am UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 45.37
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.'; } }