cópia de javascript por referência
// copy by reference
var arr = [1,2,3,4]
// both point to same array
var arr2 = arr
// object
var obj = {
"name" : "Himanshu"
}
// both point to the same object
var newObj = obj
Himanshu Jangid