Logo
Explore Help
Sign In
gaspersic/freeCodeCamp
1
0
Fork 0
You've already forked freeCodeCamp
Code Issues Pull Requests Projects Releases Wiki Activity
Files
83c9258bed9df527380e7726245b1dc978306c0f
freeCodeCamp/guide/english/certifications/javascript-algorithms-and-data-structures/debugging/use-the-javascript-console-to-check-the-value-of-a-variable/index.md

19 lines
280 B
Markdown
Raw Normal View History

fix: change directory structure
2018-10-12 15:37:13 -04:00
---
title: Use the JavaScript Console to Check the Value of a Variable
---
## Use the JavaScript Console to Check the Value of a Variable
Use the javascript console to check the value... (#34644) * Use the javascript console to check the value... ... of a variable. - Solution added to index.md * add full solution
2019-03-08 18:03:18 -03:00
### Solution
fix: change directory structure
2018-10-12 15:37:13 -04:00
Use the javascript console to check the value... (#34644) * Use the javascript console to check the value... ... of a variable. - Solution added to index.md * add full solution
2019-03-08 18:03:18 -03:00
```js
let a = 5;
let b = 1;
a++;
// Add your code below this line
fix: change directory structure
2018-10-12 15:37:13 -04:00
Use the javascript console to check the value... (#34644) * Use the javascript console to check the value... ... of a variable. - Solution added to index.md * add full solution
2019-03-08 18:03:18 -03:00
let sumAB = a + b;
console.log(sumAB);
console.log(a);
```
Reference in New Issue Copy Permalink
Powered by Gitea Version: 1.24.0 Page: 1121ms Template: 9ms
English
Bahasa Indonesia Deutsch English Español Français Gaeilge Italiano Latviešu Magyar nyelv Nederlands Polski Português de Portugal Português do Brasil Suomi Svenska Türkçe Čeština Ελληνικά Български Русский Українська فارسی മലയാളം 日本語 简体中文 繁體中文(台灣) 繁體中文(香港) 한국어
Licenses API