PicturingFrames (frame_ability)

Race #145

View Pit Stop page for race #145 by frame_abilityGhost race

View profile for PicturingFrames (frame_ability)

Official speed 76.73 wpm (47.07 seconds elapsed during race)
Race Start September 16, 2022 12:15:22pm UTC
Race Finish September 16, 2022 12:16:09pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 58.82
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.'; } }