- Notifications
You must be signed in to change notification settings - Fork30
Translate 'Variables' page#28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Merged
Uh oh!
There was an error while loading.Please reload this page.
Merged
Changes fromall commits
Commits
Show all changes
2 commits Select commitHold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
8 changes: 4 additions & 4 deletions1-js/02-first-steps/04-variables/1-hello-variables/solution.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
W kodzie poniżej, każda linia odpowiada podpunktowi w liście zadań. | ||
```js run | ||
let admin, name; //można zadeklarować dwie zmienne jednocześnie | ||
name = "Jan"; | ||
admin = name; | ||
alert( admin ); // "Jan" | ||
``` | ||
10 changes: 5 additions & 5 deletions1-js/02-first-steps/04-variables/1-hello-variables/task.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
18 changes: 9 additions & 9 deletions1-js/02-first-steps/04-variables/2-declare-variables/solution.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
##Zmienna dla naszej planety | ||
To proste: | ||
```js | ||
let ourPlanetName = "Ziemia"; | ||
``` | ||
Zauważ, że mogliśmy użyć krótszej nazwy`planet`,ale nie jest oczywiste, do jakiej planety się odnosimy. Dobrze jest być konkretnym. Przynajmniej dopóki nazwa nie jest za długa. | ||
##Nazwa obecnego użytkownika | ||
```js | ||
let currentUserName = "Jan"; | ||
``` | ||
Znowu mogliśmy skrócić nazwę do`userName`, jeśli jesteśmy pewni, że dany użytkownik jest użytkownikiem bieżącym. | ||
Współczesne edytory i autouzupełnianie ułatwiają pisanie długich nazw zmiennych. Nie oszczędzaj na nich. Nazwa składająca się z 3 wyrazów jest w porządku. | ||
Jeśli twój edytor nie ma odpowiedniego autouzupełniania, [spraw sobie nowy](/code-editors). |
6 changes: 3 additions & 3 deletions1-js/02-first-steps/04-variables/2-declare-variables/task.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions1-js/02-first-steps/04-variables/3-uppercast-constant/solution.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Zazwyczaj wielkimi literami zapisujemy stałe, które są "zakodowane na sztywno". Lub, innymi słowy, gdy ich wartość jest znana przed wykonaniem programu i bezpośrednio zapisana w kodzie. | ||
W tym kodzie `birthday`(pol. *data urodzenia*) jest dokładnie takim przypadkiem. Możemy więc użyć wielkich liter. | ||
W przeciwieństwie do niej, wartość`age`(pol. *wiek*) jest obliczana w czasie wykonywania programu. Dzisiaj mamy jeden wiek, aza rok będziemy mieli inny. Jest to stała w tym sensie, że nie zmienia się w trakcie wykonania kodu, ale jest trochę "mniej stała" niż `birthday`. Jest to wartość obliczana, więc powinniśmy pozostać przy małych literach. |
12 changes: 6 additions & 6 deletions1-js/02-first-steps/04-variables/3-uppercast-constant/task.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Oops, something went wrong.
Uh oh!
There was an error while loading.Please reload this page.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.