What is ES6 to Javascript?
ES6 refers to version 6 of the ECMA Script programming language. ECMA Script is the standardized name for JavaScript, and version 6 is the next version after version 5, which was released in 2011. It is a major enhancement to the JavaScript language, and adds many more features intended to make large-scale software development easier.
let testResults = [1.23, 1.10, 4.1];
for (let restResult of testResults) {
console.log(restResult)
} 1
2
3
4
2
3
4
Course Topics
| Topic | Includes |
|---|---|
Problem Solution Based Snippets
| Name | Purpose |
|---|---|
Termanology
Resources
Let →