일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- JS
- git
- 함수
- 선택자
- es6
- ES5+
- dev
- html5
- gitCLI
- hooks
- 최적화
- CSS
- 우아한테코톡
- hatso
- github
- AI
- 햇소
- learn next.js
- JavaScript
- next.js
- react
- 변수
- This
- DOM
- Python
- array
- ES6+
- object
- developerlife
- API
Archives
- Today
- Total
목록assign (1)
codinghatso
Object 개념 정리
/** * 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