What's the difference between: ``` val aInt: Int?...
# getting-started
j
What's the difference between:
Copy code
val aInt: Int? = a as? Int
and
Copy code
val aInt: Int? = a as Int?