Edupala

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

Month: April 2021

How to implement ionic firebase authentication

We can easily integrate Firebase authentication in ionic. Ionic firebase authentication we can use third-party auth providers like Google, Twitter, Facebook, and more. These third-party service providers are the industry standards for token-based authentication and authorization for web, desktop, and mobile applications. These third-party service providers act as an intermediary on the behalf of the […]

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 […]

Ionic firebase CRUD operation in Details

In this article, we’ll explore how to implement CRUD operation in the Ionic firebase project. Firebase is serverless technology from Google. We can consider it as Backend as a service that offers a wide range of services such as hosting, real-time databases, and cloud functions. We can use Firebase to store/manipulate data. With Ionic Firebase […]

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 […]

Scroll to top