Yesterday, I build the app which convert the app language. User have two option, either select language as mobile language or select language from multiple […]
How to make group chat in React-Native using firebase (Realtime database).
I was sceptical about Firebase with react-native. But after using Firebase with react-native, realised me that it’s awesome. Using Firebase is able to speed up […]
Day 4: Create a Rectangle Object (Hackerrank problem)
Objective In this challenge, we practice creating objects. Create a object with given length, width, perimeter, area. Task Complete the function in the editor. It […]
Find the second largest element from array in javascript (Hackerrank problem)
Function Description Complete the getSecondLargest function in the editor below. getSecondLargest has the following parameters: int nums[n]: An array of integers number. (The largest number may be dublicate) Returns […]
How can we debug the Shopify POS app in chrome?
There are the following steps to debug the Shopify app. If you want to create your Shopify app into pos, You can visit this post. […]
Create a Shopify app into POS(Point of Sale)
POS provides a facility that merchants can use Shopify POS to sell in person with Shopify. Merchants can create a cart for each customer, customize […]
Javascript var, let and const with examples.
Var, let and const keywords are used to declare variables in Javascript. Var is the oldest keyword for declaring variables. And let and const are […]
Find the number of true in the array.
Create a function trueCount which returns the number of true values in the array. Examples Solution: const count_true = r => r.filter(Boolean).length or function trueCount(arr) { const […]
How to Accept All Facebook Friend Request with one click,Facebook’s latest trick 2018
Have you got too many friend requests in your Facebook account? Looking for a Facebook trick to accept all Facebook Friends Request just in one click? […]
React-native push-notification locally and generate token for remote notification.
Hello, Today I have created demo application for notification in react-native. I have used react-native-push-notification. In this project, I have sent locally notification and generate […]
How to login with google in react-native in android.
Hello! and Welcome to login with google in react-native in android. In this post, I will login with google access login user email, name, and […]