Answers for "kotlin if x in array"

0

kotlin check if element in array

// Use the contains() function

var intArray = arrayOf(10, 20, 30, 40, 50)

println(intArray.contains(10))

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

Browse Popular Code Answers by Language