Formatted the code so that it can be read:

```
class thing {
    constructor {}
    doSomething(x, y) {
        let a = x + y;
        let b = ay;
        let c = bx;
        return (c);
    }
}

class thing {
    constructor {
        let _doSomething_a = null;
        let _doSomething_b = null;
        let _doSomething_c = null;
    }
    doSomething(x, y) {
        this._doSomething_a = x + y;
        this._doSomething_b = ay;
        this._doSomething_c = bx;
        return (this._doSomething_c);
    }
}
```
_______________________________________________
es-discuss mailing list
[email protected]
https://mail.mozilla.org/listinfo/es-discuss

Reply via email to