if today Sunday document write The shop is closed The string-01978
if ( today == Sunday )<br> document.write(The shop is closed);<br>The string The shop is closed will be written to the document only if the variable today has a value equal to
This multiple choice question (MCQ) is related to the book/course vu cs101 Introduction to Computing. It can also be found in vu cs101 Lecture No.21 - Quiz No.3.
if ( today == Sunday )
document.write(The shop is closed);
The string The shop is closed will be written to the document only if the variable today has a value equal to
document.write(The shop is closed);
The string The shop is closed will be written to the document only if the variable today has a value equal to
Sunday
today
The shop is closed
None of the given