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….
Posts Tagged
javascript
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…
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?
Javascript hoisting
Ever heard about hoisting in Javascript?Yep, you surely did… But what the heck is hoisting and how to handle it? Let’s see…
Javascript Bind function
Javascript Bind! What,when and how? Bind is a functional Javascript thing, which means it’s used in various frameworks like Angular, React, Vue etc.
Arrow Functions
What is arrow function? In short, it’s a shorthand for writing function in which “this” input returns “this” output. Additional to already stated, we can leave return keyword but only in certain cases.Benefits of using arrow functions is definetly shorter syntax ie.If we have no input we write syntax like this: