0 votes
in JavaScript by
Which of these codes is equivalent to the code given below?

a.x(g,h);

a. a [ “x” ] ( g , h );

b. x (g) &&a.x (h);

c. x( g&&h );

d. a (x )[ “g” , “h” ];

1 Answer

0 votes
by
a. a [ “x” ] ( g , h );
...