Nov 6, 2020Core Concept in React JsIntroduce: React is a javascript library. React is not a freamework. Library management easily but freamework manageable doest not so easy, because of freamwork large codebase and future. But library is so easy learning process and manageable. So many developers are accepting within a sort time. 1. React Dom: There are five basic…React Js2 min readReact Js2 min read
Nov 5, 2020Error Handling in JavascriptNo matter how good you are, how experienced you are, you will be making mistakes now and then. But it’s alright, as long as you know how to handle those errors. And if you are writing your scripts in JavaScript, then you are in luck. …Error Handling2 min readError Handling2 min read
Nov 4, 202010 Trips & Ticks in JavaScript1. substr() The JavaScript string is an object that represents a sequence of characters. The substr() method extracts parts of a string, beginning at the character at the specified position, and returns the specified number of characters. example: substr() var name= “Md. Azad Hosen”; var result= name.substr(3, 9); alert(result); 2. Array.splice() Array.splice() method can…Core Javascript2 min readCore Javascript2 min read