250x250
Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- web
- Redux
- useState
- 기준
- 삶
- built in object
- API
- error
- concept
- solidity
- Props
- tailwindcss
- evm
- JavaScript
- hardhat
- SSR
- REACT
- typeScript
- bitcoin
- CLASS
- HTML
- blockchain
- graphQL
- Interface
- node.js
- CSS
- express.js
- nextJS
- Ethereum
- middleware
Archives
- Today
- Total
목록export (1)
ReasonJun
javascript : module
// key.js export const birthKey = Symbol('Date of birth'); export const emailKey = Symbol('Emails'); // youjun.js import { birthKey, emailKey } from './key'; export default { firstName: 'youjun', lastName: 'park', age: 22, [birthKey]: new Date(1985, 11, 16, 17, 30), [emailKey]: ['thiehis@gmail.com'], }; // main.js import youjun from './youjun.js'; import { birthKey, emailKey } from './key.js'; c..
Frontend/Javasciprt
2023. 6. 7. 01:23