This question already has an answer here:
In Java, something like i++
would increment i
by 1.
How can I do in Ruby? Surely there has to be a better way than i = i + 1
?
Join Stack Overflow to learn, share knowledge, and build your career.
This question already has an answer here:
In Java, something like i++
would increment i
by 1.
How can I do in Ruby? Surely there has to be a better way than i = i + 1
?
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
From the documentation,
Ruby has no pre/post increment/decrement operator. For instance, x++ or x-- will fail to parse
So, you can do
i += 1
which is equivalent of i = i + 1