What’s the difference between @title and title? Since both of them can be variable names. Also, how do I decide which kind of variable I should use? With @ or not?
What’s the difference between @title and title ? Since both of them can be
Share
titleis a local variable. They only exists within its scope (current block)@titleis an instance variable – and is available to all methods within the class.You can read more here:
http://strugglingwithruby.blogspot.dk/2010/03/variables.html
In Ruby on Rails – declaring your variables in your controller as instance variables (
@title) makes them available to your view.