- Notifications
You must be signed in to change notification settings - Fork0
ShMcK/coderoad-es2015
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Practice refactoring with ES2015 features.
CodeRoad is an open-sourced interactive tutorial platform for the Atom Editor. Learn more atCodeRoad.io.
install the tutorial package
npm install --save coderoad-es2015
install and run theatom-coderoad plugin
Usinglet
&const
.
let
allows you to declare variables that are limited in scope to the block, statement, or expression on which it is used.
This is unlike thevar
keyword, which defines a variable globally, or locally to an entire function regardless of block scope.
varglobal=true;letblockScoped=true;
Writing basic functions continued.
We'll write two more basic functions, this time without any help.
About
An interactive tutorial for learning es2015 - under development
Resources
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
Packages0
Uh oh!
There was an error while loading.Please reload this page.