Posts

Showing posts from November, 2022

JS Part 1

Given an input as a number return an array of its digits? WAY 1: input = 12345 or  input = prompt()   /* prompt() is working for browser console. It's may work with IDE but It's should not work for some lightweight IDE */ b = digitArray(input); console.log(b) function digitArray(number){ a= number.toString().split(""); for(let i=0;i<=a.length-1;i++){a[i]= parseInt(a[i]);} return a; } WAY II: - with only unique value number = 1234455; var a = number.toString().split(""); var b=[]; for(let i=0;i<=a.length-1;i++){   if(a.indexOf(a[i])==i)   b.push(parseInt(a[i])); } console.log(b) WAY III:--

Daily Thoughts Part 1

                                         Date: 23.11.2022 feedback is the breakfast of champions.   -----unknown  It may be wrong around 20% I have a different opinion on that, Feedback may be the salad for the developer or lead. It helps to develop a good product and It also tends you both towards champions. champion is a continuous process like success.   ------RS  It's true around 120% only Don't forget:   Woman Empowerment --- The boon of knowledge is the most powerful weapon and curse too, Be careful Be polite Be happy but the Ignorance is always cursed for everyone while knowledge is the opposite too ----Rohit Singh 1. Fear is also the biggest enemy. 2. To inform others like family or friends or anyone who care about the critical situation 3. attacks with your whole energy and skip away from critical situations that were not com...

Quotes Day 2 : The food for your thought

Image