Respuesta :

Answer:

"Print In this"

or

b. "Print

this"

Explanation:

None of the options are correct if it is console.log("Print In this");

The reason why is because console.log will simply print "Print In this".

Now, if you mistyped and actually meant to include a backlash in such a way that it is console.log("Print \n this"); the \ means an enter, so it separates "Print" and "this", outputting the following:

"Print

this".