What is the formal difference between passing arguments to functions in parentheses () and in braces {}?
()
{}
The feeling I got from the Pro
Parenthesis in an ideal coding style is basically used for single line code. But if the particular piece of code is multiline then using braces is a better way.