Welcome to post one of the JS way , in which we discuss the minimal js code which solves a given problem. What we would be looking at today is going back to previous link. For this you just need to use "history.back()" method and you're a link back. Complete code snippet can look like … Continue reading Go back – the Javascript way
is() – awesome selector in css
Hello Folks, Today we would be looking at "is" pseudo-class in CSS. What is "is"? Its a pseudo-class selector and mainly used to combine CSS selectors all together. Why do I need it? Developers who are looking to enhance their knowledge in CSS plus who are looking to reduce those nitty-gritty numbers in CSS code, … Continue reading is() – awesome selector in css
cloneNode !! what & why
Hi people, Today we are gonna look at the clone node method of the node object in JavaScript. So the plain concept behind is to copy any div, as it is ( or any other tag using element id or className or querySelector, etc ). Then you need to pass boolean value for the same … Continue reading cloneNode !! what & why
Array Sort in JavaScript
Hi Readers, Today I'm here with a small article on array sort(); This method of array "Sorts" the array and gives back sorted array. For example now the above seems to be ok, I mean it does perform the way it should be right? Let us see one more example below Ok now, what the hell, … Continue reading Array Sort in JavaScript
Pure Components in React
Hello Devs, Today I've created this small article on Pure Components of react. Before going deep into why to use them lets first understand what they are. When I say Pure Components what I really mean is I'm using these Pure Components in place of just the Component from the react (remember the { Component import … Continue reading Pure Components in React
React Life Cycle – The very basic
Hi People, I've been getting few requests on React Lifecycle these days and would like to give you all a small "theoretical" understanding of it. What is RLC and whats the use of it? If you google for the react life cycle you will get a lot of articles telling what are they like CompomnentDidMount, render, … Continue reading React Life Cycle – The very basic
React component, what, how and why!!
Hi Fellow Developers, I've been working with react recently and trust me its an awesome library of JS. So today I'm going to posting this small article on backbone of React which is component. 1 ) What is Component Component is an essential part of React and look closely the UI part of this article. … Continue reading React component, what, how and why!!
WebRTC all you need to know
Hi All, I’ve been getting a lot of request from the users regarding how webRTC (Real-Time Communication) works. Well having worked in the same field, I can say its pretty easy. It wasn't so in earlier days when for android 3.0, input type overload was introduced which was “accept” and “capture” <input type="file" accept="image/*;capture=camera"> It was available … Continue reading WebRTC all you need to know
React Week 2 ( Classes / extends, export / import, Spread… )
Hello fellows, So there's been a lot that I studied past few weeks in react ( component , states , event listeners ,etc ) but there's a still lot more to catchup until I can fully start writing about core react concepts. So coming straight to the point I want to bring up few more … Continue reading React Week 2 ( Classes / extends, export / import, Spread… )
Arrow Functions!!!!
So , its been close to a week now with react js. So there are few es6 which I'm getting used to these days. The most important here is arrow functions ( => ) . Hence I've created this post to make you all understand how an arrow function is and when to be used … Continue reading Arrow Functions!!!!