Quick question, why does this work? ``` val...
# random
j
Quick question, why does this work?
Copy code
val x = "Mango"
		val y = "Mango"

		if (x === y) {
			println("x and y point to same string")
		} else {
			println("x and y point to different strings")
		}

        // prints: x and y point to same string