format in javascript code example

Example 1: javascript string format

//

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

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

Example 2: f string javascript

`string text ${expression} string text`

Example 3: format string javascript

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

Example 4: javascript date format

const d = new Date('2010-08-05')
const ye = new Intl.DateTimeFormat('en', { year: 'numeric' }).format(d)
const mo = new Intl.DateTimeFormat('en', { month: 'short' }).format(d)
const da = new Intl.DateTimeFormat('en', { day: '2-digit' }).format(d)

console.log(`${da}-${mo}-${ye}`)

Tags:

Php Example