// 상수 const MAX_VALUE = 100; const PI = 3.14;

// 변수, 함수, 메소드 let itemCount = 0;

function calculateTotal(price, quantity) { return price * quantity; }

class MyClass { // 클래스 constructor() { // 생성자 this.propertyName = 'value'; }

// 메소드 classMethod() { // 코드 내용 } }

// 예외 처리 class CustomException extends Error { // 코드 내용 }

// .prettierrc 설정 { "semi": false, "singleQuote": true, "tabWidth": 4, // 기타 설정... }

// .gitignore node_modules/ dist/ *.log

// .env (환경 변수 설정 파일)

// nodemon 사용(dev로 설치) // 터미널에 다음 명령어 입력: npm install --save-dev nodemon

// git commit 내용 // 예: feat: [feature-branch] implement new functionality