Skip to content

Commit 250c5d9

Browse files
committed
Data types
1 parent 373cb57 commit 250c5d9

File tree

3 files changed

+97
-95
lines changed

3 files changed

+97
-95
lines changed
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11

2-
Backticks embed the expression inside `${...}` into the string.
2+
Вгради израза посредством примове и `${...}` в стринга.
33

44
```js run
55
let name = "Ilya";
66

7-
// the expression is a number 1
7+
// изразът е числото 1
88
alert( `hello ${1}` ); // hello 1
99

10-
// the expression is a string "name"
10+
// изразът е стринг "name"
1111
alert( `hello ${"name"}` ); // hello name
1212

13-
// the expression is a variable, embed it
13+
// изразът е променлива, вгради я
1414
alert( `hello ${name}` ); // hello Ilya
1515
```

1-js/02-first-steps/05-types/1-string-quotes/task.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
importance: 5
1+
важност: 5
22

33
---
44

5-
# String quotes
5+
# Стрингови цитати
66

7-
What is the output of the script?
7+
Какъв е резултата от скрипта?
88

99
```js
1010
let name = "Ilya";

0 commit comments

Comments
 (0)