Skip to content

Commit e17d066

Browse files
authored
Update article.md
1 parent 029b716 commit e17d066

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

1-js/02-first-steps/04-variables/article.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# Variables
1+
# Kintamieji (ang. variables)
22

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.
66

7-
Variables are used to store this information.
7+
Kintamieji yra naudojami tam, kad kauptų šią informaciją.
88

9-
## A variable
9+
## Kintamasis
1010

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.
1212

1313
To create a variable in JavaScript, use the `let` keyword.
1414

0 commit comments

Comments
 (0)