We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
class Foo { normalMethod() { fetch(`/foo/bar/${this.foo.bar}`, {bar: 'baz'}) .then(foo => bar); } boundMethodWithBrackets = () => { fetch(`/foo/bar/${this.foo.bar}`, {bar: 'baz'}) .then(foo => bar); } boundMethod = () => fetch(`/foo/bar/${this.foo.bar}`, {bar: 'baz'}) .then(foo => bar); }