JavaScript 的陣列就是Object,這就意味著我們可以給陣列新增字串屬性: const arr = ["a", "b", "c"]; typeof arr; // 'object' arr.test = "bad"; ...
確定! 回上一頁