JS object processing functions
Let's look on the example of some database:
We have fields "id", "destination" (where to fly), date of creation, author name, hashtags and flight.
var posts = [
{
id: '1',
destination: 'China',
createdAt: new Date(2014, -1, 1, 2, 3, 4, 567),
author:...
andersen.hashnode.dev2 min read