| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | 7 |
| 8 | 9 | 10 | 11 | 12 | 13 | 14 |
| 15 | 16 | 17 | 18 | 19 | 20 | 21 |
| 22 | 23 | 24 | 25 | 26 | 27 | 28 |
| 29 | 30 | 31 |
Tags
- 변수
- react
- 함수
- CSS
- ES5+
- hooks
- This
- ChatGPT
- 햇소
- hatso
- JavaScript
- learn next.js
- html5
- 최적화
- DOM
- AI
- next.js
- array
- API
- 선택자
- ES6+
- object
- 우아한테코톡
- dev
- git
- Python
- JS
- github
- gitCLI
- es6
Archives
- Today
- Total
목록assign (1)
codinghatso
/** * Objects * one of the JavaScript's data types. * a collection of related data and/or functionality. * Nearly all objects in JavaScript are instances of Object * object = {key : value}; */ // 1. Literals and properties const obj1 = {}; // 'object literal' syntax const obj2 = new Object(); //'object constructor' syntax function print(person) { console.log(person.name); console.log(person.age)..
WEB/JavaScript Diary
2022. 1. 25. 15:11