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
- CSS
- Interface
- Redux
- error
- JavaScript
- bitcoin
- hardhat
- typeScript
- nextJS
- REACT
- Ethereum
- graphQL
- Props
- SSR
- CLASS
- API
- useState
- built in object
- middleware
- 삶
- blockchain
- solidity
- concept
- web
- tailwindcss
- HTML
- evm
- express.js
- 기준
- node.js
Archives
- Today
- Total
목록do (1)
ReasonJun
Javascript : Loop
while / do while // while let n = 0; while (n < 4) { console.log(n); n += 1; } // 0 // 1 // 2 // 3 // do while do { console.log(n); n += 1; } while (n < 4); // 0 // 1 // 2 // 3 // 4 switch function price(fruit) { switch (fruit) { case 'apple': return 1000; case 'banana': return 1500; default: return 0; } } console.log(price('apple')); // 1000 console.log(price('banana')); // 1500 console.log(pri..
Frontend/Javasciprt
2023. 6. 7. 01:20