Advanced Ruby: dynamic typing

Posted by Daniel Vela on June 14, 2020 · 1 min read

Advance Ruby: dynamic typing

With dynamic typing the type of any variable can change:

obj = "Hi, world!"
obj = true

In Ruby there is no implicit type-checking.