Skip to content

Instantly share code, notes, and snippets.

@imjayson
Created August 15, 2013 14:45
Show Gist options
  • Save imjayson/6241391 to your computer and use it in GitHub Desktop.
Save imjayson/6241391 to your computer and use it in GitHub Desktop.
var Person = {
name: 'Joe',
hello() {
console.log('Hello, my name is', this.name);
}
};
[1,2,3].map(x => x * x);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment