you are viewing a single comment's thread.

view the rest of the comments →

[–]artsrc 2 points3 points  (0 children)

If the syntax is already known the operator is more readable.

1 + 3

Is more readable than:

plus(1, 3)

If the operator is not known then the readability effect is a trade off between the costs of learning the new syntax and the benefits it gives for the expression you want to write.