An advanced-level algorithm for locating a target in a sorted array is efficient, precise, and can be optimally executed through binary search. A target value is located by comparing it to a centre value, and subsequently discarding one-half of the remaining elements.   Use case for binary search: Important to… Continue Reading Binary Search :

 What is GraphQL and Why Use It? Introductory Information of GraphQL : The concept of GraphQL came into existence in order to address some of these integration problems. Unlike asking for a place on the map like ‘fetch me the London Eye,’ in GraphQL, the data can be fetched using… Continue Reading Understanding GraphQL: A Beginner’s Guide to Modern Api Design

Lazyloading : Lazyloading is a technique used in web development to delay the loading of non essential resources such as images and videos or script until they are needed.Lazy loading helps faster Initial Load time ,Improves Performance,Enhances user Experience. Loading Attribute : Here is an example demonstrating lazyloading of images… Continue Reading LAZYLOADING IN JAVASCRIPT