Luci

Romania

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.

147 stories by Luci

The Ternary Operator

What is it and what does it solve. The ternary operator a.k.a the conditional operator is a simple and...

Nov 9 · 1 min read >

All Cool Features Introduced in ES6

Block binding: Actually variable means bindings. When we declare a variable, we bind a value to a name inside a scope....

Nov 3 · 3 min read >

20+ React Libraries to Jumpstart your Next Project

In the universe of npm, there are a lot of packages to choose from, so knowing which one to...

Oct 28 · 1 min read >

Stop Using “&&” for Conditional Rendering in React

Avoid bugs by not using `&&` in React components If you’ve seen any React application, you know how to...

Oct 19 · 1 min read >

What do async and await really mean?

async...await syntax only appeared in JavaScript recently – it was introduced in ECMAScript 2017. However, it still remains a bit...

Oct 13 · 5 min read >

How to make a copy of an array in JavaScript

Making copies of arrays in JavaScript is not as straightforward as it seems. It certainly not as easy as b...

Oct 6 · 2 min read >

Introduction to asynchronous operations in Javascript

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...

Sep 28 · 5 min read >

When should I use “this” keyword?

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...

Sep 22 · 36 sec read >

Why do I need props?

If you are new to React, you may be wondering what that props business is all about. Components make sense. But...

Sep 15 · 4 min read >

What is the difference between functional and class-based React components?

React offers two ways to define components: they can be functional or class-based. If you are new to React,...

Sep 6 · 4 min read >