Contact: aviboots(AT)netvision.net.il
41,389 questions
53,935 answers
573 users
var arr = ["swift", "c++", "php", "java", "python"] print(arr) arr.remove(at: 0) print(arr) /* run: ["swift", "c++", "php", "java", "python"] ["c++", "php", "java", "python"] */