Como exibir objeto em alerta javascript

var myObj = {"myProp":"Hello"};
alert (JSON.stringify(myObj));    // alerts {"myProp":"Hello"};
Ugly Unicorn