Skip to content

Instantly share code, notes, and snippets.

@slim-python
Created July 31, 2020 18:03
Embed
What would you like to do?
Difference between var, let and const keyword in Javascript
var income = 550;
console.log(income);
//output : 550
var income = 560;
console.log(income);
//output : 560
var income = income + 1;
console.log(income);
//output : 561
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment