I am a multidisciplinary designer and developer with a main focus on Digital Design and Branding, located in Cluj Napoca, Romania.
Throughout my 14 years of experience I have worked in various agencies as a web designer and developer.
I create and build websites to communicate a feeling of joy and comfort that shall invite the user to come back. For me, that means that not only graphical work, but also the frontend development like HTML & SCSS, JS, and WordPress or Craft CMS (backend, i know) are part of my field of activity.
The development section is really important to me, because I thereby constantly improve my skills and stay up-to-date with new methods and technology. Moreover, it presents a good change to the design part.
What is it and what does it solve. The ternary operator a.k.a the conditional operator is a simple and...
Block binding: Actually variable means bindings. When we declare a variable, we bind a value to a name inside a scope....
In the universe of npm, there are a lot of packages to choose from, so knowing which one to...
Avoid bugs by not using `&&` in React components If you’ve seen any React application, you know how to...
async...await syntax only appeared in JavaScript recently – it was introduced in ECMAScript 2017. However, it still remains a bit...
Making copies of arrays in JavaScript is not as straightforward as it seems. It certainly not as easy as b...
If you are learning JavaScript, you no doubt came across things like callbacks, promises, generators, and async / await. Those are asynchronous programming paradigms. In Javascript they...
When you browse through Javascript code, you often see function calls prepended with this. keyword, like this.functionName(). However, sometimes this is missing and it’s...
If you are new to React, you may be wondering what that props business is all about. Components make sense. But...
React offers two ways to define components: they can be functional or class-based. If you are new to React,...