“f String JavaScript” Kod odpowiedzi

f String JavaScript

`string text ${expression} string text`
Nervous Nightingale

String Interpolaation JavaScript

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

f String JavaScript

const number = 123;
// ` ${somethign} `
`Here you can put any variable ${number} or expression ${number > 100 ? "big" : "small"}`
Cautious Crayfish

Format ciągu JavaScript

//

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

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

Odpowiedzi podobne do “f String JavaScript”

Pytania podobne do “f String JavaScript”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu