[modern-react] 리액트 스터디 파일 추가

This commit is contained in:
2025-09-30 23:55:13 +09:00
parent 31bcb2efe1
commit 75ec02d506
546 changed files with 141345 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
let i = 0;
const member = {
[`attr${++i}`]: '사토 리오',
[`attr${++i}`]: '여성',
[`attr${++i}`]: '18세'
};
console.log(member);
// 결과: { attr1: '사토 리오', attr2: '여성', attr3: '18세' }