Free Palestine (rollno14)

Race #56

View Pit Stop page for race #56 by rollno14Ghost race

View profile for Free Palestine (rollno14)

Official speed 53.10 wpm (68.02 seconds elapsed during race)
Race Start July 5, 2021 1:27:09pm UTC
Race Finish July 5, 2021 1:28:17pm UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 40.71
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.'; } }