Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 291 Bytes

README.md

File metadata and controls

18 lines (11 loc) · 291 Bytes

JavaScript

Es6 :-

let and const vs Var

let and const

let can be decleared onece and can be reassigned many times but const can be decleared and reassigned once and cann't be redecleared or reassigning so let or const can be used in modern javascript

Note:-

---
---