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
- JavaScript
- blockchain
- built in object
- 기준
- CSS
- error
- typeScript
- REACT
- solidity
- hardhat
- Props
- Interface
- graphQL
- node.js
- Ethereum
- API
- bitcoin
- middleware
- concept
- CLASS
- useState
- tailwindcss
- 삶
- SSR
- nextJS
- express.js
- Redux
- web
- HTML
- evm
Archives
- Today
- Total
목록bigint (1)
ReasonJun
Javascript : (2) (string, number)
const string1 = 'Hello'; const string2 = 'Hello'; const string3 = `Hello ${string1}`; console.log(string3); // Hello Hello const number = -123; console.log(number + 1); // -122 console.log(number + undefined); // NAN console.log(typeof (number + 1)); // -122 console.log(typeof (number + undefined)); // number const a = 0.1; const b = 0.2; console.log(a + b); // 0.30000000000000004 // Floating Po..
Frontend/Javasciprt
2023. 6. 6. 13:19