JavaScript で文字列を文字列リテラルとして出力しようとしています。これにより、文字列は書かれているとおりに正確に出力されます。
printStringLiteral("\n\nHi!");//this prints "Hi!" instead of "\n\nHi!".
//What will I need to do in order to print
//the string as a string literal instead?
function printStringLiteral(toPrint){
console.log("\"" toPrint + "\"");
}