add item to set kotlin code example
Example 1: add element in set python
thisset = {"apple", "banana", "cherry"}
thisset.add("orange")
print(thisset)
Example 2: javascript add item to list
var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.push("Kiwi");