Mikhail (mayham92)

Race #4

View Pit Stop page for race #4 by mayham92Ghost race

View profile for Mikhail (mayham92)

Official speed 47.83 wpm (70.25 seconds elapsed during race)
Race Start October 16, 2020 7:17:27pm UTC
Race Finish October 16, 2020 7:18:38pm UTC
Outcome No win (2 of 3)
Accuracy 98.0%
Points 36.67
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.'; } }