Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Created August 23, 2015 02:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chuck0523/2a508b33bea5646a14a7 to your computer and use it in GitHub Desktop.
Save chuck0523/2a508b33bea5646a14a7 to your computer and use it in GitHub Desktop.
/*
var m = {
name : 'chuck',
score : 80
}
*/
(function() {
var m, n;
m = {
name: 'chuck',
score: 80
};
m = {
name: 'chuck',
score: 80
};
n = {
name: 'chuck',
score: {
first: 80,
second: 70,
third: 90
}
};
}).call(this);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment