js format string code example
Example 1: printf statement in javascript
let soMany = 10;
console.log(`This is ${soMany} times easier!`);
Example 2: f string javascript
`string text ${expression} string text`
Example 3: javascript string format
const firstName = 'john';
const lastName = 'smith';
const output = `name: ${firstName}, surname: ${lastName}`;
Example 4: format string javascript
const string = 'This is a string.';
const message = `${string} This is also a string.`;
Example 5: js string template decimals
var num = 5.1234;
var n = num.toFixed(2);