Backtick String JavaScript

// multi-line string
const str = `I
Love
Programming`;

console.log(str);
/*
I
Love
Programming
*/
Easy Earthworm