Edupala

Comprehensive Full Stack Development Tutorial: Learn Ionic, Angular, React, React Native, and Node.js with JavaScript

Javascript

How to add Javascript addEventListener on BrowserEvent

The Javascript addEventListener allows us to attach an event listener to the document or a DOM element that fires whenever an event occurs. This is the best approach for handling events in Javascript, as in the old times we use to add an inline event on elements. In this article, we’ll learn how to use […]

How to use Javascript detect browser type

The window.navigator object contains information about the visitor’s browser and the Navigator interface represents the state and the identity of the user agent. We can use a navigator to query it and to register themselves to carry on some activities. Example of Javascript detect browser Let create an HTML file to demonstrate how we can […]

Javascript detect mobile

Sometimes, we may need Javascript to detect the device, here we added small javascript code to determine device and browser types. Javascript detect mobile and destop devices Here we had a screenshot of Javascript to detect mobile and desktop devices. Example 2 javascript to detect mobile device Javascript code to determine data Saver on|off in […]

How to use the Javascript arrow function?

The ES6 has introduced Javascript arrow functions, it provides a cleaner syntax for declaring an anonymous function, by dropping the function keyword and return key, when the function body only has one expression. Advantages of Javascript Arrow function Arrow function are neat, clear and shorter as compare to traditional function expression. Arrow function provide concise syntax […]

Javascript array object: how to use it Methods?

The JavaScript Array class is a global object that is used in the construction of arrays. In Javascript, Arrays are listed like objects, and are remarkable flexibility. We can easily, sort, add, and remove items according to their position. Javascript Array object In Javascript array is a type of object that is used to store […]

JavaScript Functional Programming and its principle

JavaScript support multiple programming paradigms like object-oriented and functional paradigms. , most JavaScript libraries are multiple programming paradigms. However, JQuery has a strong flavor of functional programming, while Ext.js is a completely object-oriented JavaScript library. JavaScript was highly influenced by a variety of languages including An object-oriented language from Java, Functional language from Schema Prototype […]

Scroll to top