Not understanding the return value of jQuery.form.js or how to parse it

Not understanding the return value of jQuery.form.js or how to parse it

Using Firebug to check the return which is an Object. I guess I don't know how to retrieve the key or value. Maybe this isn't even a jQuery question, maybe javascript.

Anyway the returned value doesn't look like any of the examples I've found.

  1.          $('#ask_bd_form').ajaxForm({
                dataType:  'json',
                success:   function(data){
                
                console.log(data);
                }
             });






Firebug shows:
  1. Object { okay="1"}]
Thanks!