Skip to content

Instantly share code, notes, and snippets.

@tcrosen
Last active January 18, 2016 02:35
Show Gist options
  • Save tcrosen/12a7b31a96abe2f0b1a3 to your computer and use it in GitHub Desktop.
Save tcrosen/12a7b31a96abe2f0b1a3 to your computer and use it in GitHub Desktop.
// Inline JS
getFullName() {
return `${this.firstName} ${this.lastName}`;
}
// Multiline!
getAddress() {
// Note: This will actually insert a newline, so you don't need \n
return `${this.streetNumber} ${this.streetName}
${this.city} ${this.postalCode}`;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment