2  Basic Syntax

console.log("hello", "world", 3)
hello world 3
console.error("error")
console.warn("warning")
error
warning

2.0.1 String Interpolation

const V = 64
console.log(`v=${V}`)
v=64