0 votes
in JavaScript by
Which one of the given options can be considered as a code equivalent to the following code?

a) var o =newObject();  

b) var o= new Object;

c) var o;

d) var o = Object();

e) Object o=new Object();

Related questions

0 votes
asked Mar 21, 2021 in JavaScript by rajeshsharma
0 votes
asked Mar 22, 2021 in JavaScript by Robindeniel
...