HOME
Question with answer only?
Between 0 and 48
When rendering a partial in a view, how would you pass local variables for rendering?
`<%= render partial: "nav", selected: "about"}%>`
`<%= render partial: "nav", local_variables: {selected: "about"} %>`
`<%= render partial: "nav", locals: {selected: "about"}`
NEXT