diff --git a/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/use-the-caret-character-to-use-the-latest-minor-version-of-a-dependency/index.md b/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/use-the-caret-character-to-use-the-latest-minor-version-of-a-dependency/index.md index dec4b05d62..18b0504516 100644 --- a/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/use-the-caret-character-to-use-the-latest-minor-version-of-a-dependency/index.md +++ b/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/use-the-caret-character-to-use-the-latest-minor-version-of-a-dependency/index.md @@ -3,8 +3,16 @@ title: Use the Caret-Character to Use the Latest Minor Version of a Dependency --- ## Use the Caret-Character to Use the Latest Minor Version of a Dependency -This is a stub. Help our community expand it. +## Hint 1 +* the package `moment` should be in your package.json, specifically in the +dependencies property. -This quick style guide will help ensure your pull request gets accepted. +## Hint 2 +* `moment` version should have a caret character within it. - +## Solution: +```js +"dependencies": { + "moment": "^2.10.2" +} +```