diff --git a/README.md b/README.md
index 43244dc2..bbd8fbb1 100644
--- a/README.md
+++ b/README.md
@@ -140,7 +140,7 @@
const item = {};
```
- - [3.2](#3.2) Don't use [reserved words](http://es5.github.io/#x7.6.1) as keys. It won't work in IE8. [More info](https://github.com/airbnb/javascript/issues/61).
+ - [3.2](#3.2) If your code will be executed in browsers in script context, don't use [reserved words](http://es5.github.io/#x7.6.1) as keys. It won't work in IE8. [More info](https://github.com/airbnb/javascript/issues/61). It’s OK to use them in ES6 modules and server-side code.
```javascript
// bad