ES6 syntax the best parts
Where to find info about ES6 new syntax and features
Classes
get errorMessage() { // put a logic to get error messasage Return erroMessage; }
Destructuration
private getDataUrl({org, project}) {
console.log(org);
console.log(project);
}Fat arrow syntax
2 use cases of spread operator
Defaulting an object
Concatenating arrays
Modules and imports
Async / Await
Last updated