2 parents b790fae + f704e67 commit d0dac67Copy full SHA for d0dac67
1 file changed
README.md
@@ -900,6 +900,9 @@
900
// bad
901
this.__firstName__ = 'Panda';
902
this.firstName_ = 'Panda';
903
+
904
+ // good
905
+ this._firstName = 'Panda';
906
```
907
908
- Name your functions. This is helpful for stack traces.
0 commit comments