You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 1-js/02-first-steps/04-variables/article.md
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,14 @@
1
-
# Variables
1
+
# Kintamieji (ang. variables)
2
2
3
-
Most of the time, a JavaScript application needs to work with information. Here are two examples:
4
-
1.An online shop -- the information might include goods being sold and a shopping cart.
5
-
2.A chat application -- the information might include users, messages, and much more.
3
+
Dažniausiai JavaScript paraiška turi dirbti su informacija. Štai du pavyzdžiai:
4
+
1.Internetinė parduotuvė -- informacija gali apimti parduodamas prekes ir pirkimo krepšelį.
5
+
2.Pokalbių programėlė -- informacija gali apimti vartotojus, žinutes ir daug daugiau.
6
6
7
-
Variables are used to store this information.
7
+
Kintamieji yra naudojami tam, kad kauptų šią informaciją.
8
8
9
-
## A variable
9
+
## Kintamasis
10
10
11
-
A [variable](https://en.wikipedia.org/wiki/Variable_(computer_science)) is a "named storage" for data. We can use variables to store goodies, visitors, and other data.
11
+
[Kintamasis](https://en.wikipedia.org/wiki/Variable_(computer_science))yra "is a "named storage" for data. We can use variables to store goodies, visitors, and other data.
12
12
13
13
To create a variable in JavaScript, use the `let` keyword.
0 commit comments