i_type_fast_with_good_posture (its_over_i_have_da_high_ground)

Race #8

View Pit Stop page for race #8 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 48.06 wpm (75.16 seconds elapsed during race)
Race Start April 16, 2021 3:35:22am UTC
Race Finish April 16, 2021 3:36:37am UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 36.84
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.'; } }