What is the point of wrapping JavaScript statements in parentheses?
I have discovered that wrapping different statements in parentheses will return the last one: (34892,47691876297,2000) => 2000 ('test',73,document.createElement('p')) => <p></p> And I also found out that all the statements are executed anyway: (console.log('test'), console.log('test2'), console.log('test3'), 6) Will log: test test2 test3 And the result will be 6. However, I've also found that some statements can't be used: (throw new Error(), 10) => SyntaxError: Unexpected token throw (if (1) console.log('test'), 5) => SyntaxError: Unexpected token if So, what is the point of this parenthesis