how to clone an object
const first = {'name': 'alka', 'age': 21}
const another = Object.assign({}, first);
how to clone an object
const first = {'name': 'alka', 'age': 21}
const another = Object.assign({}, first);
java clone method
int serial = 123;
MyObject thing1 = new MyObject(serial, "Name");
thing1.addDescription("The object I plan on cloning");
MyObject thing2 = thing1.clone();
@Override
public Object clone() throws CloneNotSupportedException {
MyObject clone = new MyObject(this.serial, this.name); // All items were immutable
clone.description = new String(this.description); // If a field is not immutable
return clone;
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us