javascript format string 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: 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}`;
// name: john, surname: smith

Example 4: javascript split string

// Split string into an array of strings
const path = "/usr/home/chucknorris"
let result = path.split("/")
console.log(result)
// result
// ["", "usr", "home", "chucknorris"]
let username = result[3]
console.log(username)
// username
// "chucknorris"

Example 5: format string javascript

const string = 'This is a string.';
const message = `${string} This is also a string.`;

Example 6: js string template decimals

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