Concise Method Binding
JD Isaacks
jd at jisaacks.com
Tue Nov 10 01:45:19 UTC 2015
Considering the proposals for both concise methods and the bind operator I
think it would be a great addition to be able to use them together.
I am already seeing a lot of this:
class Foo {
bar = () => {
// bound
}
buz() {
// unbound
}
}
I think having the bind operator with a concise method makes things more
uniform:
class Foo {
::bar() {
// bound
}
buz() {
// unbound
}
}
This would also allow for this to be using on object literals:
let foo = {
::bar() {
// bound
}
buz() {
// unbound
}
}
This would also make using recursion with concise functions feasible:
let fibonacci = {
::at(n) {
if (n < 2) {
return n;
}
return this.at(n-1) + this.at(n-2);
}
}
fibonacci.at(7); // 13
I am looking for a champion for this feature. Anybody interested?
Thanks,
JD Isaacks
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.mozilla.org/pipermail/es-discuss/attachments/20151109/68f2cb82/attachment-0001.html>
More information about the es-discuss
mailing list