Skip to content

Instantly share code, notes, and snippets.

@evensandbox
Created October 13, 2013 09:27
Show Gist options
  • Select an option

  • Save evensandbox/6960198 to your computer and use it in GitHub Desktop.

Select an option

Save evensandbox/6960198 to your computer and use it in GitHub Desktop.
var a = {
x: 'x',
y: 'y',
z: ['x','y','z']
};
a.z1 = a.z; // 共享数据
a.a1 = a; // 环
console.log( a );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment