Answers for "kotlin first element of array"

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 first element of array"

Browse Popular Code Answers by Language