Exercise 23
- Create a new index23.js file
- Define a username variable
- Show the username variable value using console.log() with the variable name (string) as first parameter and the actual variable value as second
- Example:
console.log('name', name);
console.log('name', name);