Update to include warning against using eval.

Added 6.5 to strings section of Readme in order to explicitly warn against using eval(). Listed in ticket #118.
This commit is contained in:
Ryan McBride
2015-07-03 19:50:52 -07:00
parent 8d2a833857
commit a513163d46

View File

@@ -443,6 +443,7 @@
return `How are you, ${name}?`;
}
```
- [6.5](#6.5) <a name='6.5'></a> Never use eval() on a string, it opens too many vulnerabilities.
**[⬆ back to top](#table-of-contents)**