Welcome to Jekyll!
You’ll find this post in your _posts directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different...
Setup Linux AMI node server for AWS
Setup and instance Log into AWS console and go to EC2 For a simple quick start, select Amazon Linux AMI Select...
Variable Declarations - Let and Const - ES6
Previously variables were declared using the var shorthand. var declares a varaible statement and is declared before JS code is executed. The scope of a variable is contained...
Template Literals - ES6
Template Literals (pre ES2015 String Literals) allow for strings to be created with extended syntacticaly components and functionality. Template Literals are strings enclosed with the back quote or back tick...
Import and Export - ES6
The import statement is used to bring in functions/classes/variables from other files that have been exported. Import statements must be declared at the top of the file. Import types...