JavaScript - 1

JavaScript - 1: Your First JavaScript

Let's write your first JavaScript code! Your task is to use document.getElementById to select the paragraph below and change its text to "Hello, JavaScript!".

✦ JavaScript Editor
▶ Live Output

👀 Show Solution
document.getElementById("message").textContent = "Hello, JavaScript!";