Pass multiple values to console.log() separated by commas:
let name = "Alice"
let age = 30
console.log("User:", name, "Age:", age)
// Output: User: Alice Age: 30
This is cleaner than string concatenation and works with any type. You can also log objects and arrays directly. The console displays them in an expandable format where you can explore nested properties.