Skip to content
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Variables #13

Merged
merged 3 commits into from
Aug 27, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
In the code below, each line corresponds to the item in the task list.
底下的程式碼中,每一行都代表著課題列表中的一項。

```js run
let admin, name; // can declare two variables at once
let admin, name; // 可以一次宣告兩個變數

name = "John";

Expand Down
10 changes: 5 additions & 5 deletions 1-js/02-first-steps/04-variables/1-hello-variables/task.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ importance: 2

---

# Working with variables
# 使用變數

1. Declare two variables: `admin` and `name`.
2. Assign the value `"John"` to `name`.
3. Copy the value from `name` to `admin`.
4. Show the value of `admin` using `alert` (must output "John").
1. 宣告兩個變數:`admin` `name`
2. 將值 `"John"` 賦予 `name`
3. `name` 中將值複製給 `admin`
4. 使用 `alert` 顯示 `admin` 的值 (一定會輸出 "John")
15 changes: 8 additions & 7 deletions 1-js/02-first-steps/04-variables/2-declare-variables/solution.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
## The variable for our planet
## 代表我們星球的變數

That's simple:
這很簡單:

```js
let ourPlanetName = "Earth";
```

Note, we could use a shorter name `planet`, but it might be not obvious what planet it refers to. It's nice to be more verbose. At least until the variable isNotTooLong.
注意我們也可用更短的名字 `planet`,但它可能不夠清楚說明代表是哪個星球。有著更多細節是好的,至少在變數 `沒變得太長` 之前。

## The name of the current visitor
## 現在使用者的名字

```js
let currentUserName = "John";
```

Again, we could shorten that to `userName` if we know for sure that the user is current.
同樣地,若確定 user 就代表現在的使用者,我們也可用 `userName` 讓它變得更短。

Modern editors and autocomplete make long variable names easy to write. Don't save on them. A name with 3 words in it is fine.
現代化編輯器的自動完成功能讓寫長命名變數變得很簡單,不要忽略這功能,一個變數名中含有三個單字是適當的。

若你的編輯器沒有自動完成功能,快來選 [一個新的](/code-editors) 吧。
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
若你的編輯器沒有自動完成功能,快來選 [一個新的](/code-editors) 吧。
若你的編輯器沒有自動完成功能,快來選[一個新的](/code-editors) 吧。

Copy link
Contributor Author

@lenchen1112 lenchen1112 Aug 27, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

我這種引述前後都會留空白耶,比較凸顯得出這邊有什麼東西

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

喔喔 我以為中文之間可以不用留空

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

如果是強調用的話 我覺得ok


And if your editor does not have proper autocompletion, get [a new one](/code-editors).
7 changes: 4 additions & 3 deletions 1-js/02-first-steps/04-variables/2-declare-variables/task.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ importance: 3

---

# Giving the right name
# 給予正確命名

1. 建立一個變數並以我們星球命名,你會怎樣命名這個變數?
2. 建立一個變數來存放現在網站造訪者的名字,你會怎樣命名這個變數?

1. Create a variable with the name of our planet. How would you name such a variable?
2. Create a variable to store the name of a current visitor to a website. How would you name that variable?
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
We generally use upper case for constants that are "hard-coded". Or, in other words, when the value is known prior to execution and directly written into the code.
我們通常使用大寫來命名 "寫死的" 常數,或者換句話說,當常數的值在程式執行前就已知並寫在程式碼內時。

In this code, `birthday` is exactly like that. So we could use the upper case for it.
這份程式碼中的 `birthday` 是這樣,所以我們可以讓它使用大寫命名。

相對地,`age` 在執行期間才被計算出來。今天我們有一個年齡,一年後就會有另一個。它在整個程式碼被執行的過程中不會改變,但相較於 `birthday` 卻 "沒那麼不變",它是被計算出來的,故我們應該用小寫來命名。

In contrast, `age` is evaluated in run-time. Today we have one age, a year after we'll have another one. It is constant in a sense that it does not change through the code execution. But it is a bit "less of a constant" than `birthday`: it is calculated, so we should keep the lower case for it.
12 changes: 6 additions & 6 deletions 1-js/02-first-steps/04-variables/3-uppercast-constant/task.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,23 @@ importance: 4

---

# Uppercase const?
# 大寫常數?

Examine the following code:
檢查底下程式碼:

```js
const birthday = '18.04.1982';

const age = someCode(birthday);
```

Here we have a constant `birthday` date and the `age` is calculated from `birthday` with the help of some code (it is not provided for shortness, and because details don't matter here).
在這裡我們有個日期常數 `birthday`,和經由 `birthday` 與其他程式碼 (為了保持簡化這邊不提供,因為也不重要) 計算出的 `age` 常數。

Would it be right to use upper case for `birthday`? For `age`? Or even for both?
對於 `birthday` 使用大寫命名是正確的嗎?對於 `age` 呢?或者乾脆兩者都用?

```js
const BIRTHDAY = '18.04.1982'; // make uppercase?
const BIRTHDAY = '18.04.1982'; // 用大寫命名?

const AGE = someCode(BIRTHDAY); // make uppercase?
const AGE = someCode(BIRTHDAY); // 用大寫命名?
```

Loading