We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
An instance variable is a variable that is an instance of its class.
example
Within Controller
@latestrecipe = Recipe.order("created_at desc").limit(5)
The class in this case (which is a model) is Recipe, @latestrecipe is an instance of this class