Skip to content

Instantly share code, notes, and snippets.

@alangpierce
Created January 6, 2018 04:25
Show Gist options
  • Save alangpierce/fd23a8b89cf656e4892d6580afc4eac3 to your computer and use it in GitHub Desktop.
Save alangpierce/fd23a8b89cf656e4892d6580afc4eac3 to your computer and use it in GitHub Desktop.
class Giraffe {
if (ENABLE_LOUD_GIRAFFES) {
roar() { // <- Unexpected token, expected ; (3:11)
return 'ROAR!!!';
}
} else {
roar() {
return 'roar...';
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment