Coercion 指 JS Engine 將資料從一個型別轉換成另一種型別。
- Example 1: JS Engine 將 1 從 number 轉換成 string
var str = 1 + "2"; // "12"
- Example 2: JS Engine 將 0, null, undefined, "" 轉換成 false
function say(words) {
words = words || "default value";
console.log(words);
}