Helpful Tips for Front-End Developers

Helpful Tips for Front-End Developers

ยท

1 min read

Clean Code:

I've implemented and maintained several products and that I find that each ASCII text file is clean, it's very easy to mend bugs, improve functions, or integrate new functions.

Usually Use Debounce:

Imagine after we implement some module like autocomplete or click to try to something, everywhen user press any single key, we are going to request an API and render lots of blocks and if there are about 10 - 20 blocks these are going to be ok, but what happens if there are 100 - 200 or 1000 blocks?

Read & Share Knowledge:

Your knowledge that you just think is incredibly simple and everybody knows, may be helpful for somebody who is finding, researching something referring to.

Have Own Libraries:

Let save the functions which are regarding the item, string, array, etc. they're necessary for you for the following project within the future.

Self-Test:

Let test your code sort of a tester or end-user, if you are feeling it's not interesting, who will interest them?

Cover image credits: Jackson So from Unsplash

ย