When you try this,
var double_quote_with_string = "Test "Double Quote" Test";
this is syntactically incorrect. If you want quotes in your string try enclosing it in single quotes '
,
var double_quote_with_string = 'Test "Double Quote" Test';
Or use escape character
var double_quote_with_string = "Test "Double Quote" Test";
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…