javascript

運算過程中由於 Javascript 是弱型別,沒有辦法強制規範型別,所以會在運算過程中發生隱式(動態)型別轉換,稱之為 Corecion。

Converting a value from one type to another.

more

在了解以下的特性以前需要知道,JavaScript 是 syncrounous 同步在執行一個表達式的,
所以一次只能執行一個片段的程式碼,也就是一個表達式,一個表達式只能包含一個運算子與兩個參數,所以需要決定執行的次序.

優先性(precendence)

When there is more than one operators in one executable code, which operator will be called in order of precedence.

more

在開發的情境上無論是串接 API 或者是資料判斷,都需要追求便捷而好懂的方式來維護程式碼,以利於當資料判斷變得複雜臃腫時仍可以邏輯清晰。而對於程式新手來說undefined(未定義)、null(空值)或者是0(零)在判斷上是很容易掉進去的陷阱,因為判定的方法了解的不深而陷入困境。

more

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×