“Формат строки JavaScript” Ответ

F String JavaScript

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

оператор Printf в JavaScript

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

Формат строки JavaScript

//

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

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

Nodejs формат текст

var my_name = 'John';
var s = `hello ${my_name}, how are you doing`;
console.log(s); // prints hello John, how are you doing
Foolish Frog

Формат строки JavaScript

let name = "John";
let age = 30;
let food = "pizza";

// String formating using backticks
let sentence = `${name} is ${age} years old and likes ${food}`;

console.log(sentence);
// John is 30 years old and likes pizza

// String formating using plus operator
let sentence = name + ' is ' + age + ' years old and likes ' + food;

console.log(sentence); // John is 30 years old and likes pizza
Clumsy Caiman

Формат строки JavaScript

let name = "John";
let age = 30;
let food = "pizza";

// String formating using backticks
let sentence = `${name} is ${age} years old and likes ${food}`;

console.log(sentence); // John is 30 years old and likes pizza
Wicked Wryneck

Ответы похожие на “Формат строки JavaScript”

Вопросы похожие на “Формат строки JavaScript”

Смотреть популярные ответы по языку

Смотреть другие языки программирования