Abdullah Furkan Özbek
Furkan's Notes

Furkan's Notes

Follow
Follow
homeGithubTwitterbadges

React Hooks: useLayoutEffect

Sep 19, 20212 min read

1 - Definition useLayoutEffect runs synchronously immediately after React has performed all DOM mutations. This can be useful if you need to make DOM...

React Hooks: useLayoutEffect

6 Tips To Achieve Your Goal

Sep 17, 20212 min read

1 - Define Your Goals The first thing you need to do is defining what you want to do to keep you motivated. It can be working full time in a developer...

6 Tips To Achieve Your Goal

How to Deploy Your App to Netlify

Sep 16, 20212 min read

1. Push Your Code to Any Version Control Applications The first thing you need to do is push your git repository to any version control application....

How to Deploy Your App to Netlify

5 Ways To Host Your Applications

Sep 15, 20211 min read

1. Surge Surge is a cloud platform for hosting static websites, which is extremely simple to use but offers customization options for those who need...

5 Ways To Host Your Applications

Array methods that you should know

Sep 14, 20212 min read

1- findIndex The findIndex() method returns the index of the first element in the array that satisfies the provided testing function. Otherwise, it...

Array methods that you should know

React Hooks: useRef

Sep 13, 20212 min read

1. Definition useRef is a built-in React hook that accepts one argument as the initial value and returns a reference (aka ref). A reference is an...

React Hooks: useRef