Skip to main content
Journey Uncommon Logo
JourneyUncommon
hardRubyblocks procs lambdas bindingSingle-choice MCQ

What does `b.local_variable_get(:x)` return, and what does this reveal about how a `Binding` is stored?

def make_binding x = 1 b = binding x = 2 b end b = make_binding p b.local_variable_get(:x)