diff --git a/guide/english/certifications/javascript-algorithms-and-data-structures/debugging/use-the-javascript-console-to-check-the-value-of-a-variable/index.md b/guide/english/certifications/javascript-algorithms-and-data-structures/debugging/use-the-javascript-console-to-check-the-value-of-a-variable/index.md index bca78ec793..0f422facf3 100644 --- a/guide/english/certifications/javascript-algorithms-and-data-structures/debugging/use-the-javascript-console-to-check-the-value-of-a-variable/index.md +++ b/guide/english/certifications/javascript-algorithms-and-data-structures/debugging/use-the-javascript-console-to-check-the-value-of-a-variable/index.md @@ -3,8 +3,16 @@ title: Use the JavaScript Console to Check the Value of a Variable --- ## Use the JavaScript Console to Check the Value of a Variable -This is a stub. Help our community expand it. +### Solution -This quick style guide will help ensure your pull request gets accepted. +```js +let a = 5; +let b = 1; +a++; +// Add your code below this line - +let sumAB = a + b; +console.log(sumAB); + +console.log(a); +```