❓Question // should define in child component (<Body>) // to follow the...
(I took notes because multiple ag-Grids on a single page didn't work well) When I was trying to...
https://react.dev/reference/react-dom/createPortal What is that We can specify DOM...
I had a opportunity to define like this type hoge_hoge_1 which last character changes of number as...
What is higher order function? function that take in a function as an argument function...
Clean up function There is like this code useEffect(() => { console.log('effect...
Have you came across like this situation ? obj.name ? obj.name : "I don't know" Enter...
mainly javascript/typescript and react, let's get start it 💎 1. Use date-fns instead of...
Normally when you need CPU to get slower in chrome, set Performance > CPU but slowest setting...
↓ detail here https://github.com/kazoogon/frontend_with_cleanArchitecture As I've written in title,...
Solve frontend performance problem by chrome dev tool in real...
At first basic for loop for(let i = 0; i < 5; i++) { const num = i * 2 ...
what is prototype? simply put, special property in object For example function...
💎 Iterator iterator is function which has next function which returns object {done,...
▼ If you don't know about Closure, I've already written about it ...
what is destructuring assignment ? 😎 unpack values from arrays, or properties from objects ...
redeclare reassign scope initialize let ⛔ ✅ 🗳 block ⛔ const ⛔ ⛔ 🗳...
What is hoisting ?? a variable can be used before it has been declared because it stores...
💎 Imposter of 'this' At first show you this sample of call(), it's ok if you don't get it...
💎 What is Object.assign normally it is used when merge multiple objects const target =...
In javascript const obj1 = {} const obj2 = {} obj1 === obj2 // false Enter fullscreen mode ...
I always forget about it, so I'm gonna write it down to cheat quickly someday 😝 💎 A...
When I searched about it, it turned out Dependency Inversion is accomplished by using Dependency...
Interface Segregation defines like this Clients should not be forced to implement any methods they...
definiton of liskov substitution is like that 🤔 The Liskov Substitution Principle (LSP) states that...
Open closed principle defines like that Software elements (classes, modules, function...) should be...
🔥 Dangerous situation Woman has crazy boy friend, but she can't escape from him. She...
↓ This is Japanese version of this article 😅 スクロールで動かなくなります!...
💎 function in function ▼ in function can declare function in javascript function...
💖 For those who have learned about useReducer, but still can't get when you should use intuitively ...