Features Of ES6 Part 2 : const

added by JavaScript Kicks
8/25/2014 11:03:35 AM

160 Views

The ES6 const keyword will give you what the keyword name implies – a read-only variable. Like let, a variable declared with const will have block scoping, and you cannot re-declare a const.


0 comments