Did you stumble upon a WTF moment when using async inside useEffect hook? I saw that some of the developers don’t quite understand how to use useEffect together with promise/async. So, today I want to show you the proper way of using async inside React’s useEffect hook, so you can avoid those WTF moments and…
Category
Javascript
Javascript Splice VS Javascript Slice
Little chit-chat Hi! Let me keep you up-to-date with things that were rolling lately. As I’ve said previously, I finally updated my blog. I wanted to give it a more sleek and personal look. The old one was good but a little bit cold without any personal touch. So here it is, a new looking…
How to check if a picture is an image or a floor plan by using Javascript
Hi there! Oh, maaaan… This Coronavirus situation was pretty difficult. I hope you all managed to overcome it without any serious consequences. As you might have guessed, it did impact my writings on my blog and youtube video recordings as well. The home office proved to be much more exhausting than it sounds at first….
Redux – simplified
What is Redux? It’s a library for state management based on Flux pattern and functional programming. It’s best used for medium to enterprise applications. Why and when to use it? When? By adding Redux to your application you add up complexity. So when developing small apps it’s not necessary to use Redux. Why? We use…
Reactive user interfaces using SvelteJS
Today I’ll be writing about SvelteJS. A truly refreshing Javascript framework (Well, Svelte is not a framework. It’s a compiler.) which will, as stated on Svelte.dev web, enhance you web apps. But I must say, not just your web apps, your whole experience of developing, will be enhanced. Only few..ermmm, frameworks (should I call it…
Overview of UI frameworks in 2019
Last blog post I announced I’ll be writing about a new Javascript framework. In the meantime (while I was preparing that new blog post) I got asked by PMF Split university to do some presentation. I said yes, of course. That’s why my new blog post, about the new Javascript framework, is on hold. So…
Labeled statements in Javascript
Naming in Javascript world Labeled statements are just that, labels.Using label statement we name loops or blocks of code in Javascript. What do we get of it?Well, that way, we easily refer back to the code, later if we need to!
Using Export-Import in Typescript?
Let’s dive in Following the previously published article, i’ll be writing about Export-Import modules in Typescript.
All you need to know about Typescript
What is Typescript? In short, it’s a superset of Javascript! Nothing more or less.
Javascript Call and Apply functions
WHAT? What are Call and Apply functions?