// Backticks helps to incude variables in a string (interpolation) const name = 'Grepper' //↓variables //↓expressions or functions console.log(`Hey ${name}! Your name has ${name.length} characters`)