Javascript - Grouping Operator ()
Table of Contents
Note
Grouping Operator () for expression.
Parens (Parenthesis) are also used to define the function signature
Parens () can’t contain statements.
Articles Related
Example
console.log("Hello "+( typeof userName !== 'undefined' ? userName : "Anonynmous") + ", Welcome ! ");