Nov 5, 2020Solution of 10 real-life problems with the help of javascript.If you know javascript, it’ll be very easy for you to solve some real-life problems. You can learn things more easily if you try to solve real-life problems with your code. When you’ll start connecting your life with code, that is the moment you are having the actual taste of…5 min read5 min read
Nov 4, 202010 things you need to know about React1. Framework or library Library is a small thing where you can take your own decision. On the other hand, the framework is a big thing where you do your work according to the framework. React is a library. You can make things from your comfort zone using the library. But in the framework, you’ll…2 min read2 min read
Nov 3, 2020Let’s handle javascript errorsIn programming, as in everything else, to be in error is to be reborn. — Error Object In javascript everything is an object. Even errors are an object too. Before dealing with them, you need to know that there are two types of error objects. One is a name another is a message. There are other non-standard properties available in most environments. …2 min read2 min read
Nov 3, 2020Secrets of coding style and good commentingAny fool can write code that a computer can understand. Good programmers write code that humans can understand too. So, we should try to write good and clean code so that any human can understand it. …3 min read3 min read
Nov 2, 202010 interesting things I learned about javascript.1. concat() Suppose, you have two arrays A and B. You want to make a new array C where you want all the elements of A & B array, that time you use concat(). //EXAMPLE-1 => FOR TWO ARRAYS const A = [1, 2, 3, 4]; const B = [6, 7, 8, 9]; const…3 min read3 min read