Knight_Oikos (knight_oikos)

Race #118

View Pit Stop page for race #118 by knight_oikosGhost race

View profile for Knight_Oikos (knight_oikos)

Official speed 73.27 wpm (49.30 seconds elapsed during race)
Race Start April 25, 2022 4:14:40am UTC
Race Finish April 25, 2022 4:15:29am UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 56.17
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.'; } }