SpecialCharacter-2

 
This is how we use special character double quotes in string "Hello \" Welcome to LEARNKODE\"."; See the code snippet:
 
 
 
<!DOCTYPE html> <html> <head> <title>Welcome to LearnKode - A code learning platform</title> </head> <body> <p id="sample"></p> <script> document.getElementById("sample").innerHTML = "Hello \" Welcome to LEARNKODE\"."; </script> </body> </html>
Output