Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org

Feedback on: irt.org FAQ Knowledge Base , July 20, 2000 at 10:21:59:

You are here: irt.org | About | Feedback | 1509 [ previous next ]

Feedback on:
irt.org FAQ Knowledge Base

Sent by
Laurie Cooper on July 20, 2000 at 10:21:59:

Worth:
Very worth reading

Length:
Just right

Technical:
Just right

Comments:
In Q869, the cloneObject function needs to be corrected as follows:

function cloneObject(what)
{
for (i in what)
{
if (typeof what[i] == 'object')
this[i] = new cloneObject(what[i]);
else
this[i] = what[i];
}
}



Other feedback on 'irt.org FAQ Knowledge Base' - show all

©2018 Martin Webb