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
Input
(none)
Output
Hello, JavaScript
Hint
- console.log() prints its argument and adds a newline.
- 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.