Panjang string Kotlin

val hello = "Hello World"
    
    // Use .length to get length of string
    val stringLength = hello.length
Noob_Code