i_type_fast_with_good_posture (its_over_i_have_da_high_ground)

Race #13

View Pit Stop page for race #13 by its_over_i_have_da_high_groundGhost race

View profile for i_type_fast_with_good_posture (its_over_i_have_da_high_ground)

Official speed 50.12 wpm (72.07 seconds elapsed during race)
Race Start April 18, 2021 9:44:45pm UTC
Race Finish April 18, 2021 9:45:57pm UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 38.42
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.'; } }