Last updated 2 months ago
提供一個陣列:
let line_ids = ["a", "b", "c", "a", "y", "c"];
撰寫 jQuery 語法,執行迴圈,將重覆的 line_id 移除。
印出結果如下:
["a","b","c","y"]
參考作法: