AKASHUTOSH KUSHWAHAinblueewhitee.hashnode.dev·Apr 3, 2024 · 1 min readFORCE that pushes you to work hardhere, I am going to waste my time writing my urge to work hark instead of doing it so. so pitiful of me!!! going back to work seeya but when time gets hard,remember why you started00
AKASHUTOSH KUSHWAHAinblueewhitee.hashnode.dev·Mar 23, 2024 · 1 min readSortingSelection sort- it is a O(n^2) technique to sort an array in ascending order. Working: We take two pointers that traverse through the array. Pointer 1 : slow - runs n times Pointer 2: fast - runs [(n(n+1))/2] times. pointer 2 find the element contain...00
AKASHUTOSH KUSHWAHAinblueewhitee.hashnode.dev·Dec 16, 2023 · 1 min readA quick look on Promises in javascriptA promise is an object that is used to handle asynchronous functions in a more syntactical manner, which more or less explains promises quite clearly. UGLY Example of promise can clear things up. https://gist.github.com/blueewhitee/3d6ed7c67dd4204d58...00
AKASHUTOSH KUSHWAHAinblueewhitee.hashnode.dev·Dec 14, 2023 · 1 min readMaking a counter and Understanding async flow through itWhat is a counter? Counter is simply counting of numbers or time recursively . here we are trying to make a representation of second hand of a clock and thus understand async flow via it. javascript is an asynchronous language but at the same time it...00