What is the correct way to initialize a nullable variable?
val name: String? = null
var name: String
val name = null
val name: String