JavaScript Functions

Every JavaScript application uses functions. In this blog post we’ll go over the basics of functions and arrow functions, providing default parameters to functions, passing named parameters to functions, and using the rest parameters in functions… Read more

Similar

Asynchronous Array Functions in JavaScript

The new async/await is an immensely useful language feature that hides the complexity of asynchronous code and makes it look like it’s working in a synchronous way. The code example below does not look complicated at all, just a few awaits here and there.... (more…)

Read more »