Free Palestine (rollno14)

Race #66

View Pit Stop page for race #66 by rollno14Ghost race

View profile for Free Palestine (rollno14)

Official speed 59.73 wpm (60.47 seconds elapsed during race)
Race Start July 6, 2021 12:05:18pm UTC
Race Finish July 6, 2021 12:06:18pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 45.79
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.'; } }