dns_resolver (dns_resolver)

Race #3

View Pit Stop page for race #3 by dns_resolverGhost race

View profile for dns_resolver (dns_resolver)

Official speed 49.99 wpm (72.25 seconds elapsed during race)
Race Start June 6, 2023 6:33:49pm UTC
Race Finish June 6, 2023 6:35:01pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 38.32
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.'; } }