Intertial (yuvi_birdi)

Race #25

View Pit Stop page for race #25 by yuvi_birdiGhost race

View profile for Intertial (yuvi_birdi)

Official speed 43.53 wpm (82.98 seconds elapsed during race)
Race Start November 24, 2022 7:42:35am UTC
Race Finish November 24, 2022 7:43:58am UTC
Outcome No win (3 of 3)
Accuracy 93.0%
Points 33.38
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.'; } }