Please help me how to pass a string(which i cannot edit, like coming from DB) with double quotes to a method in the javascript.
*Please note this "Hello "world", Welcome..." is coming from DB which i cannot edit. To understand you easily how the format is coming i placed it here like this
var tempString = "Hello "world", Welcome...";
sampleMethod(tempString);
sampleMethod : function(tempString)
{
    alert(tempString)<br>
}
Actually i was working on this thing in the EXtjs 3.4
Grouping View for Grouping Store.
Pelase help me with this.