menu

자바스크립트 스프레드 문법의 함정

Sep 30, 2024

스프레드 문법은 자바스크립트에서 배열이나 객체를 다룰 때 코드의 가독성과 간결함을 높여주지만, 그만큼 주의해야 할 점들도 존재합니다. 이 글에서는 스프레드 문법을 사용할 때 발생할 수 있는 성능 문제와 예기치 않은 결과를 방지하는 방법을 다룹니다.

pitfalls-of-the-spread-syntax's post

Why you can't use styled-components with NextJS

May 04, 2024

Recently, I was working on Next.js with styled-components. During the development, I've encountered the errors that styled-components can't be used in React Server Component. Let's find out why.

styled-components-with-nextjs's post

importmap으로 외부 모듈 정의하기

April 02, 2023

모듈화되지 않은 자바스크립트 프로젝트 환경에서 importmap은 외부 라이브러리를 모듈로 정의할 수 있는 훌륭한 대안 중 하나다

define-module-with-importmap's post

웹팩(Webpack)에 대하여

March 25, 2023

오늘은 Webpack에 대한 정의와 필수 개념을 버전 5 기준으로 간단하게 정리해보았다

about-webpack's post

isNaN( )과 Number.isNaN( )의 차이점

June 11, 2023

전역 공간에서 쓰는 isNaN과 Number.isNaN의 차이점은 파라미터의 숫자형 변환 유무이다. 이를 간과하면 예기치 않은 결과가 나올 수 있으므로 isNaN을 쓸 때는 항상 주의해서 써야한다.

isNaN-vs-Number-isNaN's post