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
- express.js
- API
- CLASS
- error
- node.js
- CSS
- solidity
- 기준
- evm
- Redux
- blockchain
- typeScript
- built in object
- Props
- Ethereum
- useState
- concept
- hardhat
- SSR
- nextJS
- Interface
- tailwindcss
- REACT
- bitcoin
- middleware
- web
- graphQL
- 삶
- JavaScript
- HTML
Archives
- Today
- Total
목록javascipt (1)
ReasonJun
Javascript : Operators Basic
console.log(1 + 2); // 3 console.log(1 - 2); // -1 console.log(3 * 4); // 12 console.log(10 / 2); // 5 console.log(7 % 5); // 2 console.log(5 ** 2); // 25 console.log(Math.pow(5, 2)); // 25 let text = 'two' + 'string'; console.log(text); // twostring text = '1' + 1; // Adding a number and a string converts it to a string console.log(text); // 11 : string // Unary Operators let a = 5; a = -a; // ..
Frontend/Javasciprt
2023. 6. 7. 01:22