Any codebase needs naming conventions to be organized. We will examine ways to make the React Native codebase readable, structured, and scalable in today’s discussion…
Today we are going to make a react project using template. Here are the points you have to follow. 3. Now create a new folder…
Conditions in any programming language are the control behavior which determines whether or not that piece of code can run. Some of the conditions used…
Use of “use Strict” : Its strictly checks if the variable is defined using var keyword or let keyword. Handle Global Variables: It is difficult…
Naming convention in programming is considered one of the hardest things. Today we will learn the different and most common types which are used in…
The server returns one single, pre-generated HTML page which in turn contains JavaScript code that changes the page dynamically in the browser (this approach is…
It is constructed either with the RegExp constructor or can be written as a literal value by enclosing a pattern in forward slash(/) characters. The…
Here, we are going to achieve palindromes in two ways. With inbuilt javascript functions Using for loops Provided test cases palindrome(“racecar”) should return true palindrome(“test”) should return…
Arrow function also known as flat arrows are more shorter compare to functions. Lets have a look at it. Here is a function written in…
Rest Parameter… It is denoted by 3 dots(…). The dots(…) means gather the remaining parameters into an array. Below shows the code of rest operator.…