How to connect android debugging wireless without data cable

Hello Guys, In this article I am going to show you how to connect android debugging wireless without data cable. Many time while debugging app or sites from devices gives us trouble while debugging from android devices. We need to use data cable which is very boring...
Read More ⟶

Javascript group object by its properties

In this small article I will show you how you can easily group the object by its properties. Below is the function code to group the object by its properties. Common = { _groupBy:function(list,props) { return list.reduce((a, b) => {(a[b[props]] = a[b[props]] ||...
Read More ⟶