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 |
Tags
- Redux
- CSS
- Interface
- error
- node.js
- REACT
- built in object
- Props
- solidity
- HTML
- useState
- graphQL
- nextJS
- web
- Ethereum
- JavaScript
- tailwindcss
- blockchain
- hardhat
- bitcoin
- middleware
- API
- express.js
- 삶
- evm
- 기준
- SSR
- typeScript
- CLASS
- concept
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