F String JavaScript
`string text ${expression} string text`
Nervous Nightingale
`string text ${expression} string text`
let soMany = 10;
console.log(`This is ${soMany} times easier!`);
// "This is 10 times easier!
//
const firstName = 'john';
const lastName = 'smith';
const output = `name: ${firstName}, surname: ${lastName}`;
// name: john, surname: smith
var my_name = 'John';
var s = `hello ${my_name}, how are you doing`;
console.log(s); // prints hello John, how are you doing
let name = "John";
let age = 30;
let food = "pizza";
// String formating using backticks
let sentence = `${name} is ${age} years old and likes ${food}`;
console.log(sentence);
// John is 30 years old and likes pizza
// String formating using plus operator
let sentence = name + ' is ' + age + ' years old and likes ' + food;
console.log(sentence); // John is 30 years old and likes pizza
let name = "John";
let age = 30;
let food = "pizza";
// String formating using backticks
let sentence = `${name} is ${age} years old and likes ${food}`;
console.log(sentence); // John is 30 years old and likes pizza