Last modified
- Jan 18, 2016. WebStorm 11.0.3
References
cd to project directory
npm install --save-dev babel-cli
npm install --save-dev babel-preset-es2015
Last modified
References
cd to project directory
npm install --save-dev babel-cli
npm install --save-dev babel-preset-es2015
'use strict'; | |
// CASE 1: The object is mutable and the variable can be reassigned. | |
let o1 = { foo: 'bar' }; | |
// Mutate the object | |
o1.foo = 'something different'; | |
// Reassign the variable | |
o1 = { message: "I'm a completely new object" }; |