f strings in javascript code example

Example 1: printf statement in javascript

let soMany = 10;
console.log(`This is ${soMany} times easier!`);
// "This is 10 times easier!

Example 2: string interpolation javascript

const age = 3
console.log(`I'm ${age} years old!`)

Example 3: javascript string format

//

const firstName = 'john';
const lastName = 'smith';

const output = `name: ${firstName}, surname: ${lastName}`;
// name: john, surname: smith

Example 4: f string javascript

`string text ${expression} string text`

Example 5: js string template decimals

var num = 5.1234;
var n = num.toFixed(2);