This is the Variable and I am assigning the below text in it. But not getting the required Output.
PROBLEM-----> var myStr = "I am a \"double qouted\" string inside \"double qoutes\".";
MY OUTPUT-----> myStr = "I am a "double qouted" string inside "double qoutes"."
REQUIRED OUTPUT-----> myStr = "I am a "double qouted" string inside "double qoutes".
My question is, how to get the desired output?