Files

24 lines
356 B
Markdown
Raw Normal View History

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
2018-10-12 15:37:13 -04:00
<details><summary>Solution 1 (Click to Show/Hide)</summary>
---
## Solutions
2018-10-12 15:37:13 -04:00
```js
let a = 5;
let b = 1;
a++;
// Add your code below this line
2018-10-12 15:37:13 -04:00
let sumAB = a + b;
console.log(sumAB);
console.log(a);
```
</details>