5 if (r * ( x + 1 ) + ( y + 2 )) {
6 y = ( "123" + "3456" );
7 // parseInt() is the "catch" on this case
8 z = ( ( q + w ) / ( parseInt('abc', 16) * ( 7 ) ) )
15 // not a bynary expression or a ExpressionStatement
16 // VariableDeclaration > VariableDeclarator > [Identifier + Literal]
21 madness = ( weird, stuff ), ( 45, 56 )
27 function returnTest() {
31 function returnTest2() {
35 function returnTest3(amount) {
36 return amount + " result" + ( amount > 1 ? "s" : "" );
39 function returnTest4() {
40 return ( a || b < 0 ) && y();