CIW Exam Questions

Which of the following would be the correct JavaScript way to make a text string appear in bold prin

Which of the following would be the correct JavaScript way to make a text string appear in bold
print?

A.
“<B>Hello!</B>”

B.
“Hello!.bold()”;

C.
“Hello!”.bold();

D.
<b>”Hello!”</b>