“JS ``” Ответ

JS ``

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

Строка интерполяция JavaScript

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

Строка буквального JavaScript

`string text`

`string text line 1
 string text line 2`

`string text ${expression} string text`

tag`string text ${expression} string text`
Happy Heron

`` В JavaScript

// ` ` or a string literal allows you to include javascript in a string easily

a = 3

//instead of:
console.log("the value of a is " + a)

//you can use a string literal:
console.log("the value of a is ${a}")



//you can use javascript
a = 3
b= 5
console.log("a is ${a}, b is ${b}, and a plus b is ${a + b}.")
Powerful Piranha

Ответы похожие на “JS ``”

Вопросы похожие на “JS ``”

Больше похожих ответов на “JS ``” по JavaScript

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

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