Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How can we assign an object in Java Script??

For Example:-
-----------
If i create an object "obj1"
var obj1 = Object();
obj1.name = "hari";

and if i want to assign it to two objects "obj2" and "obj3"
with different names...

obj1.name = "gopi"
obj2 = new Object(obj1);

obj1.name = "raghu"
obj3 = new Object(obj1)

Now ob2.name become to "raghu" from "gopi". WHY?
how to solve the above problem?

Answers were Sorted based on User's Feedback



How can we assign an object in Java Script?? For Example:- ----------- If i create an object &q..

Answer / sandesh magdum

var obj1 = Object();
obj1.name = "hari";

obj1.name = "gopi";
obj2 = new Object(obj1);

//preserving name property of obj2 through obj4
var obj4=new Object();
obj4.name=obj2.name;

obj1.name = "raghu";
obj3 = new Object(obj1);

obj2=new Object(obj4);
alert("obj2 name="+obj2.name+" obj3 name="+obj3.name)

Is This Answer Correct ?    5 Yes 3 No

How can we assign an object in Java Script?? For Example:- ----------- If i create an object &q..

Answer / rajesh

I maynot give the exact reason..but root cause may be
because of...

As you know the javascript is just parsed from top to
bottom. It won;t execute as long as you run the app.
While parsing it just holds the reference and checks for
syntactical errors.

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More AJAX Interview Questions

what is ajax

3 Answers  


What is synchronous request in ajax?

0 Answers  


Is javascript knowledge is required to do Ajax?

1 Answers  


What are the benefits of ajax?

0 Answers  


How do I submit a form or a part of a form without a page refresh?

0 Answers  


We used asynchronous server communication for a long time, what new thing is ajax bringing?

0 Answers  


What are different readystate in ajax?

0 Answers  


What are the new controls introduced in asp.net ajax control toolkit? : asp.net ajax

0 Answers  


How to handle multiple or concurrent requests in ajax?

0 Answers  


How can you find out that an ajax request has been completed? : asp.net ajax

0 Answers  


How do we debug javascript?

0 Answers  


Is ajax a browser-dependent or a browser-independent script?

0 Answers  


Categories