Answers for "kotlin add element to array"

2

kotlin add element to array

val list: MutableList<String> = ArrayList()
list.add(3, "Hello")
// Adds Hello as the third item in list

list.add("Goodbye")
// Adds Goodbye to the end of list
Posted by: Guest on May-23-2020
0

add to array kotlin

var listofVehicleNames = arrayListOf("list items here")
Posted by: Guest on December-11-2020

Browse Popular Code Answers by Language