From d556afc039394585a462ebba72dd07f62803ef52 Mon Sep 17 00:00:00 2001 From: Ian McCormack Date: Wed, 31 Oct 2018 20:52:41 +0000 Subject: [PATCH] Specify forbidden use in ECMAScript 5 (#31483) --- guide/english/javascript/with/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/javascript/with/index.md b/guide/english/javascript/with/index.md index 781ea4b215..ff1964edae 100644 --- a/guide/english/javascript/with/index.md +++ b/guide/english/javascript/with/index.md @@ -5,7 +5,7 @@ title: With JavaScript's `with` statement is a shorthand way for editing several properties on one object. Most developers discourage usage of `with`, and you are best not using this keyword. -**Note**: `"strict mode"` forbids usage of `with`. +**Note**: `"strict mode"` in ECMAScript 5 forbids usage of `with`. ### Syntax