JavaScript interview questions abu November 06, 20211. capitalize string in javascript. function captilize(str){ const lower = str.toLowerCase(); return str.char... Read More
CSS Flex Box abu November 06, 20211. what is flex box? New module in CSS3 to easy align elements in different directions and orders. CSS felxbox layout replaces float lay... Read More
Find the maximum element from the array in javascript abu July 08, 2021 In this article i am going to find the maximum value from the array,i will use multiple approch to find the maximum value from the array. ... Read More
How to sort array in ascending and descending order abu July 07, 2021 In this article i am going to sort array element in ascending and descending order using in built javascirpt sort method. Descending ord... Read More
How to remove duplicates element from array abu July 07, 2021 In this post i'm going to remove duplicates element from array,i will try with multiple approaches to remove duplicates element from ar... Read More
How to remove falsy values from array abu July 07, 2021In this article we will remove falsy values from array.there are only six falsy values in javascript: [x] undefined [x] null [x] NaN [x] 0 ... Read More
what does redux combineReducers do? abu February 26, 2019Redux always use root reducer function that accept the current state and action as input and it return a new state. in many cases you want t... Read More
How to set default json date format in laravel abu February 20, 2019 Use this function in model where we need to change default json date formate in human readable. example: 1 day ago /** ... Read More
How to create website in multi language abu February 05, 2019 In this tutorial we will learn how to make website in multi language,in this tutorial i will implement google translator API. include thi... Read More
How to create helper in laravel abu January 28, 2019 In this section we will see how to create a helper in laravel,create a helpers.php file in your app folder and load it up with composer. ... Read More