The thinking is that ? would indicate that the placeholder before it is optional. The value after the ? would be the value to use if the placeholder doesn't exist. We could also not bother with this fallback value b/c for multiplication we'll almost always want this to be 1.
The thinking is that
?
would indicate that the placeholder before it is optional. The value after the?
would be the value to use if the placeholder doesn't exist. We could also not bother with this fallback value b/c for multiplication we'll almost always want this to be1
.