diff options
Diffstat (limited to 'files/zh-cn/web/javascript/reference/global_objects/object/create')
-rw-r--r-- | files/zh-cn/web/javascript/reference/global_objects/object/create/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/web/javascript/reference/global_objects/object/create/index.html b/files/zh-cn/web/javascript/reference/global_objects/object/create/index.html index a9b54f733d..073605d77f 100644 --- a/files/zh-cn/web/javascript/reference/global_objects/object/create/index.html +++ b/files/zh-cn/web/javascript/reference/global_objects/object/create/index.html @@ -75,7 +75,7 @@ console.log('Is rect an instance of Shape?', rect instanceof Shape); // true rect.move(1, 1); // Outputs, 'Shape moved.'</pre> -<p>如果你希望能继承到多个对象,则可以使用<span class="short_text" id="result_box" lang="zh-CN"><span>混入的方式。</span></span></p> +<p>如果你希望能继承到多个对象,则可以使用混入的方式。</p> <pre class="brush: js notranslate">function MyClass() { SuperClass.call(this); |