Which value will the constants hold if we assign two values to a single constant | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Which value will the constants hold if we assign two values to a single constant

Constant are those that begin with capital letter. ww are assigning two values say X=4 and then X=7. which value will it have? we are given a warning message when we try to change the value say X=4 X=7 puts X need result of this Constant X

8th Jul 2017, 11:47 AM
Sriranjani S
4 Answers
+ 1
u cant change the value of a constant why do u even bother trying to change it to 4
8th Jul 2017, 11:49 AM
David Sebastian Keshvi Illiakis
David Sebastian Keshvi Illiakis - avatar
0
i am just giving it a try to chek it. when i tried it it gave the value 7 and not 4
8th Jul 2017, 11:50 AM
Sriranjani S
0
You've asked a good point, most people usually overlook these small stuffs. In Ruby you can change the value of a Constant. -_- That's why you're getting 7 instead of 4. X = 7 X = 4 # Will raise a warning, (eval):1: warning: already initialized constant X But, that's just a warning, it'll still assign X as 4. This is thanks to some of the weird decisions of Matz. If you truly want a value to be immutable, freeze the variable, MY_CONSTANT = "foo".freeze MY_CONSTANT << "bar" # => RuntimeError: can't modify frozen string Example taken from, http://blog.honeybadger.io/when-to-use-freeze-and-frozen-in-ruby/
8th Jul 2017, 8:59 PM
Salekin
Salekin - avatar
0
thank u for ur clarification
19th Jul 2017, 5:14 PM
Sriranjani S