Kyrillos (kyrillos_akram)

Race #2

View Pit Stop page for race #2 by kyrillos_akramGhost race

View profile for Kyrillos (kyrillos_akram)

Official speed 22.19 wpm (162.78 seconds elapsed during race)
Race Start May 26, 2023 11:22:41pm UTC
Race Finish May 26, 2023 11:25:24pm UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 17.01
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.'; } }