Carl (himynameisrohitsingh)

Race #4

View Pit Stop page for race #4 by himynameisrohitsinghGhost race

View profile for Carl (himynameisrohitsingh)

Official speed 44.58 wpm (75.37 seconds elapsed during race)
Race Start March 30, 2019 7:18:54am UTC
Race Finish March 30, 2019 7:20:09am UTC
Outcome No win (2 of 2)
Opponents 1. bladevampirek (56.43 wpm)
Accuracy 92.0%
Points 34.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.'; } }