Day 4: Escape Sequence Values
\n - A newline character
\t - A tab character
\" - A double Quotation marks
\\ - A backslash
Sample Code:
"Hello, \n Go"
Output:
Hello
Go
"Hello, \t Go"
Output:
Hello, Go
"Quotes:, \"\""
Output:
Quotes: ""
"Backslash: \\"
Output:
Backslash...
sandeepvura.hashnode.dev1 min read