Using numbers to differentiate between repeated options or groups of schema settings makes it easy to implement loops to access them.
Non-numerical alternatives, such as first and second, top and bottom, or left and right should be avoided if possible because they are more difficult to use inside a loop. In some cases, such as with left and right, they should also be avoided because they are not infinitely extendable.
Using numbers to differentiate between repeated options or groups of schema settings makes it easy to implement loops to access them.
Non-numerical alternatives, such as
first
andsecond
,top
andbottom
, orleft
andright
should be avoided if possible because they are more difficult to use inside a loop. In some cases, such as withleft
andright
, they should also be avoided because they are not infinitely extendable.Example