acces json with single record

acces json with single record

When my script returns [{"Status":"Ok"}] from a jQuery.Ajax request, how do I get the Status Value?

  1. jQuery.ajax({
    ...
  2. success: function(data) {
  3.       alert(data.status); //<---- Is undefined
    },
  4. ...