| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- This
- JavaScript
- object
- git
- array
- 우아한테코톡
- 변수
- ChatGPT
- dev
- Python
- es6
- learn next.js
- DOM
- next.js
- 햇소
- hooks
- 함수
- CSS
- JS
- API
- ES5+
- 선택자
- hatso
- 최적화
- html5
- react
- github
- gitCLI
- ES6+
- AI
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