Categories
Javascript Technology

React Native Dev: Is It The End Of React Native Development?

This question is a very common woman for all tech-savvy, and there is no certain answer available. The concerns of all the people regarding the react native are depicted in all the tech-blogs as well as in the social networking sites. A concrete answer to this question is probably not possible, but there are studies […]

Categories
Javascript Technology

Know About Node.js Development – Tips and Best Practices

Node.js plays a significant role in making JavaScript popular among the developers. The popularity of Node js development based on JavaScript engine can be credited to the efficiency and speed it provides to the development environment. The platform is easy to start, but as you move ahead the core functionalities of the app can become difficult. […]

Categories
Javascript

Emojis using Javascript

Technology, undeniably has shaped our life beyond our thinking. The pace at which technology has evolved in last 3 decades is nothing less than a miracle. You think of any profession, you have some kind of technolgical interface between the end result and the human effort. Computers and computing devices have given this technological advancement […]

Categories
Javascript

Why self-closing script tags doesn’t work?

Self-closing script tag are not supported by all browsers as this may contain inline code and HTML is not smart enough to turn that feature on or off. Let’s see two types of script tag. One is self-closing script tag which browsers do not correctly recognize. <script src=”myscript.js” /> And the another is, <script src=”myscript.js”></script> […]

Categories
Javascript

Determine if variable is ‘undefined’ or ‘null’

In JavaScript, you can check whether a variable is undefined or null or blank or has a value defined in it. In JavaScript, ‘undefined’ means a variable has been declared but has not been assigned a value yet, such as: var a; console.log(a); //shows undefined console.log(typeof a); //shows undefined ‘null’ is an assignment value. This […]

Categories
Javascript

Getting Started with Handlebars JS

Handlebars js is a popular templating engine which is simple to use, powerful and has a large community based on the Mustache template language. Using this, you can write cleaner code and separate the generation of HTML from the rest of your JavaScript. Written in JavaScript language, Handlebars JS is a compiler which takes any […]

Categories
Javascript

Date Object – JavaScript

The Date object is a datatype that is used to work with dates and times which is built into the JavaScript language. Date objects are created with the new Date() that represents a single moment in time. Once a Date object is created, you can allow a number of methods to operate on it. This […]

Categories
Javascript

JavaScript Arrays

The JavaScript Arrays object is a global object that is used to store multiple values in a single variable. The JavaScript Arrays object is a global object that is used to store multiple values in a single variable i.e. collection of elements. Syntax: var cars = [ “Fiat”, “BMW”, “Nissan” ]; Note: Never put a […]

Categories
Javascript

Detect Browser in JavaScript

To detect browser in JavaScript, window.navigator object contains information about the user’s browser i.e. Firefox, Internet Explorer, Opera, etc. JavaScript has a standard object called navigator which contains data about user’s browser. It has a lot of properties. JavaScript window.navigator object can be written without window prefix. For example, navigator.appName navigator.appCodeName navigator.platform Browser detection is […]

Categories
Javascript

JavaScript Objects Overview

JavaScript is an Object Oriented Programming i.e. OOP language. It provides four basic capabilities i.e. Encapsulation, Aggregation, Inheritance and Polymorphism. For example as a car. It has properties like weight and color and and methods like start and stop. So, all cars have same properties, but the values differ from one car to another. Object […]