A
Q. Consider the following code snippet
function tail(o)
{
for (; o.next; o = o.next) ;
return o;
}
Will the above code snippet work? If not, what will be the error?
- Correct Answer - Option(C)
- Views: 22
- Filed under category JavaScript
- Hashtags:
Discusssion
Login to discuss.