JavaScript Mixins

Let’s start by defining what a mixin is. I would explain it as a way to share set of data (functions, methods, variables…) with objects.

on javascript and development

Parsing Date in JavaScript

Recently I worked on something that should be a simple and straightforward task. Timestamp was sent as string from backend and it should converted it to Date object in fronted. Format of the string looked like this - 2015-02-08 18:00:00. No biggie, right?

on javascript, development, and cross-browser