Added info on other implementation of Function constructor

Added per comment in PR #396
This commit is contained in:
Ryan McBride
2015-07-14 20:17:00 -07:00
parent f1d5243691
commit a048ebf22e

View File

@@ -574,6 +574,9 @@
```javascript
// bad
var add = new Function('a', 'b', 'return a + b');
// still bad
var subtract = Function('a', 'b', 'return a - b');
```
**[⬆ back to top](#table-of-contents)**