DEV Community

Cover image for Constants in Ruby
Rixio Barrios
Rixio Barrios

Posted on • Updated on

Constants in Ruby

For somebody who knows a little bit of Javascript; I am not stranger to constants. Constants in Ruby however, are represented in all caps. Who knew!?

Constants in Javascript:

const valueDoesNotChange = myValue
Enter fullscreen mode Exit fullscreen mode

Constants in Ruby

VALUE_DOES_NOT_CHANGE = myValue
Enter fullscreen mode Exit fullscreen mode

Top comments (0)