Kaziu

Kaziu @kaziusan

About: Frontend Engineer Experience Backend as well ✈ backpacker

Location:
🇵🇱 or 🇯🇵
Joined:
Aug 12, 2019

Kaziu
articles - 48 total

<ChatGPT vs me> A better way to call functions in a child component from a parent component in React

❓Question // should define in child component (&lt;Body&gt;) // to follow the...

Learn More 0 0Mar 6

Things to watch out for when using multiple ag-Grids on the same page

(I took notes because multiple ag-Grids on a single page didn't work well) When I was trying to...

Learn More 0 0Feb 13

Modal with ReactDOM.createPortal

https://react.dev/reference/react-dom/createPortal What is that We can specify DOM...

Learn More 0 0Nov 20 '24

define type of 'hoge_hoge_1' in typescript

I had a opportunity to define like this type hoge_hoge_1 which last character changes of number as...

Learn More 0 0Nov 18 '24

Explain what is higher order function by Pikachu

What is higher order function? function that take in a function as an argument function...

Learn More 0 0Dec 6 '23

What is "return" in useEffect

Clean up function There is like this code useEffect(() =&gt; { console.log('effect...

Learn More 0 0Dec 2 '23

Difference between Logical OR (||) and Nullish coalescing operator(??)

Have you came across like this situation ? obj.name ? obj.name : "I don't know" Enter...

Learn More 0 0Aug 3 '23

17 Frontend code reviews in real project (react, typescript)

mainly javascript/typescript and react, let's get start it 💎 1. Use date-fns instead of...

Learn More 0 0Apr 25 '23

I wanna make CPU slower than default setting in chrome devtool 😣!

Normally when you need CPU to get slower in chrome, set Performance &gt; CPU but slowest setting...

Learn More 2 0Mar 11 '23

I've just created simple frontend Todo app with clean architecture

↓ detail here https://github.com/kazoogon/frontend_with_cleanArchitecture As I've written in title,...

Learn More 1 2Jan 23 '23

😅 スクロールで動かなくなります! をどうやってchrome dev tool使用してfrontの問題を解決したのか

Solve frontend performance problem by chrome dev tool in real...

Learn More 0 0Jan 2 '23

📦 loop and block scope. difference between var and const with image

At first basic for loop for(let i = 0; i &lt; 5; i++) { const num = i * 2 ...

Learn More 4 1Dec 11 '22

🤔 For what prototype??

what is prototype? simply put, special property in object For example function...

Learn More 2 0Dec 10 '22

🌀 Iterator and Generator

💎 Iterator iterator is function which has next function which returns object {done,...

Learn More 5 0Dec 10 '22

Closure + Arrow function = extremely short

▼ If you don't know about Closure, I've already written about it ...

Learn More 1 0Sep 28 '22

Destructuring assignment in javascript

what is destructuring assignment ? 😎 unpack values from arrays, or properties from objects ...

Learn More 1 0Sep 26 '22

👀 var, let, const in javascript . just 30sec

redeclare reassign scope initialize let ⛔ ✅ 🗳 block ⛔ const ⛔ ⛔ 🗳...

Learn More 0 0Sep 25 '22

Hoisting in javascript. Magic of declare order

What is hoisting ?? a variable can be used before it has been declared because it stores...

Learn More 0 0Sep 25 '22

😎 imposter of "this". apply(), call(), bind()

💎 Imposter of 'this' At first show you this sample of call(), it's ok if you don't get it...

Learn More 0 0Sep 24 '22

"Object.assign". It's easier than you think

💎 What is Object.assign normally it is used when merge multiple objects const target =...

Learn More 0 0Sep 22 '22

{} === {} is false... 😳WHaT?? Let me explain it with image 🖼

In javascript const obj1 = {} const obj2 = {} obj1 === obj2 // false Enter fullscreen mode ...

Learn More 1 0Sep 22 '22

🏄‍♂️ DNS record : A, MX, CNAME, TXT

I always forget about it, so I'm gonna write it down to cheat quickly someday 😝 💎 A...

Learn More 6 0Sep 18 '22

SOLID : Dependency Inversion

When I searched about it, it turned out Dependency Inversion is accomplished by using Dependency...

Learn More 3 0Sep 16 '22

SOLID : Interface Segregation

Interface Segregation defines like this Clients should not be forced to implement any methods they...

Learn More 1 0Sep 13 '22

SOLID : liskov substitution

definiton of liskov substitution is like that 🤔 The Liskov Substitution Principle (LSP) states that...

Learn More 1 0Sep 12 '22

SOLID : Open closed principle, explain simply

Open closed principle defines like that Software elements (classes, modules, function...) should be...

Learn More 3 0Sep 11 '22

"😭 Escape from crazy boy friend!" explain Dependency Injection simplest way

🔥 Dangerous situation Woman has crazy boy friend, but she can't escape from him. She...

Learn More 4 0Sep 4 '22

Solve frontend performance problem by chrome dev tool in real project (ag-grid)

↓ This is Japanese version of this article 😅 スクロールで動かなくなります!...

Learn More 2 0Sep 2 '22

😇 "Javascript Closure" I think you can get what it is finally after reading this

💎 function in function ▼ in function can declare function in javascript function...

Learn More 12 1May 18 '22

Getting understand "useReducer in React" from real life sample

💖 For those who have learned about useReducer, but still can't get when you should use intuitively ...

Learn More 10 0May 7 '22