What is object cloning

Answer Posted / anurag sharma

loning is a process to copying all fields from one
object

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Difference between window, document, and screen in Javascript?

536


What is javascript in simple terms?

482


Which built-in method sorts the elements of an array?

581


Why is object naming important to use in javascript?

504


What is the use of a date object in javascript?

557






What are all the types of Pop up boxes available in JavaScript?

577


What is enum in javascript?

610


What does trim stand for?

483


What are the data types available in javascript? Explain

485


How can javascript language be separated from objects?

544


How to create an input box?

540


What are the Non-primitive data types in JavaScript?

551


Does javascript support foreach loop?

516


What is missing in my code? function numberTally(numList) { var evenTotal = 0; var oddTotal = 0; for (var i = 0; i <= numList.length; i++) { if i % 2 { // i is odd oddTotal += numList[i]; // or oddTotal = oddTotal + numList[i]; } else { // i is even evenTotal + numList[i]; } } alert(oddTotal); return evenTotal; }

2904


Which built-in method returns the character at the specified index?

739