console.log("hello", "world", 3)
hello world 3
console.error("error") console.warn("warning")
error warning
const V = 64 console.log(`v=${V}`)
v=64