AkiVaMu Just tiny things come to mind...

Posts related to JavaScript


Async programming and threading

Read this article to know about multi task application: Single task and multi task app

more...

Single task and multi task app

Single task application

more...

Angular starter

This is a first look at an Angular app.
Taking the reference code from official tutorial: Tour of Heroes

more...

JavaScript summary

This is very good post series about JS under the hood: JS Engine & async programming

more...

JavaScript apply(), call() and bind()

Suppose we have a function:

function selfGreeting() {
    console.log('Hello from ' + this.name)
}
more...

First-class function in JavaScript and Java

What is first-class function?

  • Can be named by variables.
  • Can be passed as arguments to procedures.
  • Can be returned as the results of procedures.
  • Can be included in data structures.
more...

JavaScript sparse array by example

JavaScript array is still an object

more...