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 );

Related questions

0 votes
asked Oct 8, 2022 in JavaScript by rajeshsharma
0 votes
asked Mar 24, 2021 in JavaScript by sharadyadav1986
...