JavaScript : What is it really? AND Some new features in ES6Aayush Shrestha
?
I built this presentation for Prime ICT Meetup that happened in Kathmandu on June, 2016.
Here, I talk about What JavaScript really is and about some new features introduced in ES6.
The first part of the slides are taken/influenced from David Crockford's talk called "Really. JavaScript" : https://www.youtube.com/watch?v=lTWGoL1N-Kc
Getting started with ES6 : Future of javascriptMohd Saeed
?
Motivation: Why should we use ES6?
ES6 Features
What to be covered next?
How to use ES6 Features today?
Transpilers ( source-to-source Compiler)
Famous Build Tools
ES6 introduced many new features to JavaScript including let and const block scoping, arrow functions, classes, promises, and modules. Tooling like Babel is currently needed to use new features by transpiling code to older JavaScript versions. Future releases will continue enhancing JavaScript with new syntax and capabilities under an annual release cycle. ES7 proposals include concurrency, streams, math enhancements, and better metaprogramming with classes.
In my presentation at Megro.es #3, I talked about:
* introduction to kontainer-js, MP4 library written in ES2015
* advantage of publish-time transpilation
The document introduces npm (Node Package Manager) and how to publish packages to the npm registry. It discusses creating a package.json file to define metadata and dependencies for a package. It also covers using semantic versioning for releases, registering with npm, and publishing packages to the public npm registry so other developers can install them.
JavaScript : What is it really? AND Some new features in ES6Aayush Shrestha
?
I built this presentation for Prime ICT Meetup that happened in Kathmandu on June, 2016.
Here, I talk about What JavaScript really is and about some new features introduced in ES6.
The first part of the slides are taken/influenced from David Crockford's talk called "Really. JavaScript" : https://www.youtube.com/watch?v=lTWGoL1N-Kc
Getting started with ES6 : Future of javascriptMohd Saeed
?
Motivation: Why should we use ES6?
ES6 Features
What to be covered next?
How to use ES6 Features today?
Transpilers ( source-to-source Compiler)
Famous Build Tools
ES6 introduced many new features to JavaScript including let and const block scoping, arrow functions, classes, promises, and modules. Tooling like Babel is currently needed to use new features by transpiling code to older JavaScript versions. Future releases will continue enhancing JavaScript with new syntax and capabilities under an annual release cycle. ES7 proposals include concurrency, streams, math enhancements, and better metaprogramming with classes.
In my presentation at Megro.es #3, I talked about:
* introduction to kontainer-js, MP4 library written in ES2015
* advantage of publish-time transpilation
The document introduces npm (Node Package Manager) and how to publish packages to the npm registry. It discusses creating a package.json file to define metadata and dependencies for a package. It also covers using semantic versioning for releases, registering with npm, and publishing packages to the public npm registry so other developers can install them.
Lean Functional Programming with Javascript (in Japanese).
This slide introduce 1. Anonymous Function 2. Lexical Scope 3. Referential Transparency 4. Higher Order Function 5.Currying 6.Function Composition 実用的でないという意味ではありません。