Firebase Firebase - How to connect to multiple Firebase projects at the same time? This is a rare situation, but the good news is it's doable and it's very easy. Prerequisites2 Firebase accountsThat's it!Install Firebase and Firebase Adminyarn add firebase firebase-admin Import Firebase
Javascript JavaScript - Loose Equality VS Strict Equality (== Vs. ===) In various programming languages there is always an operator for comparing 2 expressions, and that is the == operator or "is equal to". This operator compares two expression and returns a
Javascript JavaScript - Arrays explained IntroIn JavaScript array is a list-like object used to store multiple data in a single container or variable. Array items are represented by zero-based indexes, 0 is the first item,
Javascript JavaScript - Comments explained Comments are very common to every programming languages, they also come in different formats. Just like in other programming languages, comments are mostly use to add an explanation to a
Javascript JavaScript - localStorage localStorage is a window property that allows you store data locally within the website origin. The data save in localStorage will still be available even after you close the browser,
VueJs Vue.js Examples - Counter Button IntroHere's an example of basic Vue.js scenario. A button that increments and decrements a number. Breaking downLet's breakdown what's happening on our code. Vue Our Vue.js code has
Javascript JavaScript - Using the "typeof" operator in validation IntroThe typeof operator is a JavaScript operator that returns the data type of its operand in a form of a String. An operand can be a variable, a function or
Javascript JavaScript - Using the typeof operator in validation IntroThe typeof operator is a JavaScript operator that returns the data type of its operand in a form of a String. An operand can be a variable, a function or
Javascript JavaScript - The difference between x++ and ++x Most of new Javascript developers often get confused with these two. So let's find out what really is the difference between them. ++xlet x = 1; console.log(++x); // 2You'll notice
Javascript How to create and upload a Firebase Function? Cloud Functions for Firebase lets you automatically run backend code in response to events triggered by Firebase features and HTTPS requests. Your code is stored in Google's cloud and runs