Answers for "kotlin check if something is 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

Code answers related to "kotlin check if something is in array"

Browse Popular Code Answers by Language