If you are working on a cool React Native app, I guess you want to make to look-and-feel completely to your own design.
React Native on iOS: Network Request Failed
By default iOS isn’t supporting HTTP requests, only HTTPS requests are allowed.
Helping other people is the best skill you can have!
Since I started the Mr Frontend Community, I noticed that I helped a lot of people. Not to lift me above others! No, I really discovered for myself that, helping others brought me a lot good things this year.
Find duplicate property values in an Array of Objects in JavaScript
Finding duplicate property values in an Array of Objects in JavaScript is not always that simple if you thought, so let’s dive in! A few days ago I needed to work this out, so I thought let’s write it down, so I could use it later again!
Array of Objects
Let’s define an example Array of Objects, where each Object is a user:
var myArray = [
{id: 1, name: 'Foo Bar', email: 'foo@bar.com'},
{id: 2, name: 'Bar Foo', email: 'bar@foo.com'},
{id: 3, name: 'Joe Ocean', email: 'joe@ocean.com'},
{id: 3, name: 'Jenny Block', email: 'foo@bar.com'},
];
