Skip to content

Instantly share code, notes, and snippets.

@sid137
Created April 9, 2011 04:20
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 sid137/911110 to your computer and use it in GitHub Desktop.
Save sid137/911110 to your computer and use it in GitHub Desktop.
(function() {
var bitlist, kids, singers, song;
song = ["do", "re", "mi", "fa", "so"];
singers = {
Jagger: "Rock",
Elvis: "Roll"
};
bitlist = [1, 0, 1, 0, 0, 1, 1, 1, 0];
kids = {
brother: {
name: "Max",
age: 11
},
sister: {
name: "Ida",
age: 9
}
};
}).call(this);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment