* Use the javascript console to check the value... ... of a variable. - Solution added to index.md * add full solution
		
			
				
	
	
	
		
			280 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			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);