Knight_Oikos (knight_oikos)

Race #73

View Pit Stop page for race #73 by knight_oikosGhost race

View profile for Knight_Oikos (knight_oikos)

Official speed 71.38 wpm (50.60 seconds elapsed during race)
Race Start April 6, 2022 7:22:40am UTC
Race Finish April 6, 2022 7:23:31am UTC
Outcome No win (2 of 3)
Accuracy 94.0%
Points 54.73
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.'; } }