nhoek (nhoek)

Race #1

View Pit Stop page for race #1 by nhoekGhost race

View profile for nhoek (nhoek)

Official speed 23.30 wpm (144.21 seconds elapsed during race)
Race Start November 4, 2019 7:03:52pm UTC
Race Finish November 4, 2019 7:06:17pm UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 17.86
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.'; } }