🎴 Flashcard Mode

JavaScript Fundamentals Quiz

Card1 / 10
Mastered0
Review0
QuestionClick to flip

Finish the code below to write the message "I'm a programmer!" to a web page:

AnswerClick to flip back
A
document.write("I'm a programmer!");
💡 Explanation:

In JavaScript, statements must end with a semicolon to be syntactically correct.

Change Mode