How do I insert quotes in anchor tag?

How can I insert quotes in a string, anchor tag? I am adding link using tag in my application of node.js. It is not accepting.

How to overcome that? And what is the reason it doesn't accept that?

"<A HREF="index.html">";

You can escape quotes in string literals :

var s = "<A HREF=\"index.html\">";

Two methods are there

First method

var s = '<A HREF="index.html">';

Second Method

escape quotes in string literals :

var s = "<A HREF=\"index.html\">";