Now with new language features Javascript swap variable values very easily. While doing laundry a thought popped up in my mind and how it relates to JavaScript. Imagine the following picture. Now how you could swap clothes from these two machines. You do need a temporary container to hold clothes from side and make the […]
Category: Tutorials
Use Recursive Types in Typescript
Interface is such a nice feature in Typescript for custom static type checking. Main reason is to make your code less error prone but I use it primarily for intellisense. Today we will be discussing recursive types. I need to modal the accordion in HTML using following object. { title: “Parent”, expanded: true, subItems: [ […]
We are required to create secure passwords. For secure password we need to follow some strict rules. Some of these rules are: – At least one uppercase alphabet – At least one special character – At least 12 characters and the list goes on. While keeping these requirements, visitors to your website can have a […]
I’ll focus on Geo location with Ionic framework but same is true for others (All of them that use cordova/phonegap in one way or the other such as nativscript, weex, quasar). By Hybrid mobile apps I mean apps that uses web technologies and cordova to run native on handheld devices. Using a native feature in […]
Random Ionic Tips: Tabs and Text Color
This article comprises of following ionic tips Set Root Nav and Tabs How to apply text color in Ionic Set Root Nav and Tabs My app structure is like The Red Box tells that I am on Login Screen . After successfully login, I was redirected to the Tabs Page. Tabs Page next decides where […]
