JSFiddle - React, Tailwind, and code Playground
by anoopsuda
JavaScript
var str = "anoop is a \"bad guy\"";
var link = '<a href="google.com" >My G-Link</a>'
console.log(str);
document.write(str + "<br>");
document.write(link + "<br>");
var PlayWithSlash = "FirstLine\t Secondline\t \\Third Line "
document.write(PlayWithSlash);