# Logging Printing to the JavaScript console. Enter the following code commands in a [repl.it](https://repl.it) or a JavaScript editor of your choice. ```javascript console.log('Welcome to JavaScript'); // This will print the following message to the console: "Welcome to JavaScript" ``` ```javascript const name = 'Alex'; // name cannot be mutated (changed) console.log('The name you entered is %s', name); // The name you entered is Alex ```