Knight_Oikos (knight_oikos)

Race #111

View Pit Stop page for race #111 by knight_oikosGhost race

View profile for Knight_Oikos (knight_oikos)

Official speed 75.76 wpm (47.68 seconds elapsed during race)
Race Start April 16, 2022 7:32:32am UTC
Race Finish April 16, 2022 7:33:20am UTC
Outcome No win (1 of 1)
Accuracy 95.0%
Points 58.08
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.'; } }