對象的屬性值函數
obj["123"] = 456; var n = "123"; // 能夠傳一個變量到 [] ,來取變量對應在 Object 中的屬性值 console.log(obj[n]);
console.log("123" in obj); // true