i_type_fast_with_good_posture (its_over_i_have_da_high_ground)

Race #12

View Pit Stop page for race #12 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 47.13 wpm (76.64 seconds elapsed during race)
Race Start April 18, 2021 9:37:11pm UTC
Race Finish April 18, 2021 9:38:27pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 36.13
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.'; } }