Skip to content

Instantly share code, notes, and snippets.

@markson
Created November 18, 2012 00:25
Show Gist options
  • Save markson/4101878 to your computer and use it in GitHub Desktop.
Save markson/4101878 to your computer and use it in GitHub Desktop.
javascript object creation
var m = {
name:'Markson',
gender:'Male',
laugh:function(){
return "hahaha";
}
}
console.log(m.name);
console.log(m.laugh());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment