Answers for "kotlin get first element in array list"

0

kotlin first element of array

// Use the first() function
var intArray = arrayOf(10, 20, 30, 40, 50)

println(intArray.first())

// Returns 10
Posted by: Guest on October-29-2020

Code answers related to "kotlin get first element in array list"

Browse Popular Code Answers by Language