How to handle boolean values in SQLite using JavaScript Proxies
If you've ever worked with SQLite, you should be aware of the supported data types and Boolean isn't one of them.
read more →
If you've ever worked with SQLite, you should be aware of the supported data types and Boolean isn't one of them.
read more →
In this part we are going to
read more →
In this short article, I would like to show you how to debug Electron production binaries on Windows, Mac & Linux.
read more →
In this part we are going to setup Redux, connect it to Firebase and create our first component.
read more →
It's a very common scenario when you have to compare strings ignoring their case. The usual approach is to convert both of them to upper or…
read more →
In this first part we are going to take a look at the requirements, plan the application structure, initialize a React app and set up Firebase.
read more →
In this short post I am sharing some best practices that I've learned, during my journey writing React applications.
read more →
In layman's terms, a linked list is a list of nodes, where each node holds two things: a value and a pointer to the next node in the list. Let's see how we can implement one using JavaScript.
read more →
Nice little thing I learned today: When you pass an Array
as a value to a template literal, it gets implicitly coerced into a String
. Behind the scenes String.prototype.concat
is used, as stated in the ECMA-262 specification document.
const fruits = ['apples', 'oranges'];console.log(`${fruits}`); // 'apples,oranges'