diff --git a/1-js/04-object-basics/05-object-toprimitive/article.md b/1-js/04-object-basics/05-object-toprimitive/article.md index 90584f0dfb..92d4f66dc8 100644 --- a/1-js/04-object-basics/05-object-toprimitive/article.md +++ b/1-js/04-object-basics/05-object-toprimitive/article.md @@ -123,7 +123,7 @@ These methods must return a primitive value. If `toString` or `valueOf` returns By default, a plain object has following `toString` and `valueOf` methods: - The `toString` method returns a string `"[object Object]"`. -- The `valueOf` method returns an object itself. +- The `valueOf` method returns the object itself. Here's the demo: