Seth Austin Bergman
  • Home
  • Portfolio
  • DevOps

ES6

ES2015 is a significant update to the language, and the first major update to the language since ES5 was standardized in 2009. Implementation of these features in major JavaScript engines is underway now.

ES6

Write code. Don't fight your linter.

Stop wasting time formatting javascript! Discussions About Building and Enforcing a JavaScript Style Guide By far the biggest reason for adopting prettier is to stop all the ongoing debates over styles. It is

Seth Bergman Seth Bergman
ES6

ES6 for Humans

Table of Contents: - let, const and block scoping - Arrow Functions - Default Function Parameters - Spread/Rest Operator - Object Literal Extensions - Octal and Binary Literals - Array and Object Destructuring - super in Objects - Template Literal and Delimiters...

Seth Bergman Seth Bergman
ES6

Level Up Using Async / Await with the MEAN Stack

This post details a new feature in Node.js that make callbacks and promise libraries like Bluebird and co a thing of the past. All of the modern browsers support the new version

Seth Bergman Seth Bergman
ES6

ES6 Learning Notes - Asynchronous Development

Callbacks The most basic form of async programming in JS is the callback. The caller spawns an asynchronous operation. When the caller initiates this process, it passes the process to a callback, trusting

Seth Bergman Seth Bergman
ES6

ES6 Learning Notes - Built In Objects

New Array Changes ES6 has added several new functions to Array instances. find Find the first member whose value is greater than 8: var ary = [1, 5, 10]; var match = ary.find(item

Seth Bergman Seth Bergman
ES6

ES6 Learning Notes - Functional JavaScript

Arrow functions introduce a concise syntax for defining a function. On the left hand side of the arrow are the parameters, and on the right is the function body. There is no need for braces or a return statement.

Seth Bergman Seth Bergman
ES6

ES6 Learning Notes - Classes

Classes In the old way of writing classes, a constructor function and a prototype object that all instances would inherit from had to be created. This looked something like this: var Employee = function(

Seth Bergman Seth Bergman
ES6

ES6 Learning Notes - Variables and Parameters

The let Keyword let allows us to define variables in a different way than var. With var there are two types of scope: global when the variable is defined outside of the function,

Seth Bergman Seth Bergman
Seth Austin Bergman © 2023
Latest Posts Facebook Twitter

Made with in Austin, Texas.

© 2016 - 2018 Seth Bergman | Full Stack Engineer