Recaptcha is spinning

If you encounter a spinning recaptcha with an uncaught error due to Json.

The code below will bypass the Prototype.js that is running on most older model frameworks.

 <script>

        Array.prototype.reduce = function (callback, initialVal) {

            var accumulator = (initialVal === undefined) ? undefined : initialVal;

            for (var i = 0; i < this.length; i++) {

                if (accumulator !== undefined)

                    accumulator = callback.call(undefined, accumulator, this[i], i, this);

                else

                    accumulator = this[i];

            }

            return accumulator;

        };

What are your feelings