Matheus Genteluci 9d09a12906 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 13:03:18 -08:00

280 B

title
title
Use the JavaScript Console to Check the Value of a Variable

Use the JavaScript Console to Check the Value of a Variable

Solution

let a = 5;
let b = 1;
a++;
// Add your code below this line

let sumAB = a + b;
console.log(sumAB);

console.log(a);