JavaScript bootcamp · Lab 01

Hello, JavaScript

easyOutput5 minLesson: Output

Read the question, write JavaScript on the right, then Run or Check.

QuestionHint and solution stay closed until you open them

Log exactly this line to the console:

Hello, JavaScript

The checker matches your output character for character — mind the capital J and the comma.

Output. One line: Hello, JavaScript

Constraints

  • Use a single console.log call.

Examples

Example 1 — No input to read — just log the line.
Input
(none)
Output
Hello, JavaScript
Hint
  1. console.log() prints its argument and adds a newline.
  2. console.log("Hello, JavaScript");
Show correct code

Peek only after you have tried. You can still Check your own version.

console.log("Hello, JavaScript");
main.jsconsole.log · readLine() · Ctrl + Enter
ResultIdle
Run to see output. Check grades the tests.