Vladtsepesh (vladtsepesh)

Race #75

View Pit Stop page for race #75 by vladtsepeshGhost race

View profile for Vladtsepesh (vladtsepesh)

Official speed 25.45 wpm (141.93 seconds elapsed during race)
Race Start September 20, 2023 2:48:26pm UTC
Race Finish September 20, 2023 2:50:48pm UTC
Outcome Win (1 of 3)
Accuracy 92.0%
Points 19.51
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.'; } }