Try it
Javascript
Jquery
Angular
Learn Angular
Learn Javascript
Learn Bootstrap
Learn jQuery
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
×
Save This try
Title
Description
This is how we use special character double quotes in string "Hello \" Welcome to LEARNKODE\"."; See the code snippet: