Skip to main content
Journey Uncommon Logo
JourneyUncommon
easySwiftstructs vs classesSingle-choice MCQ

Two variables `a` and `b` both point to the same class instance. After `b.score = 10`, what is `a.score`?

class Player { var score = 0 } let a = Player() let b = a b.score = 10