일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- API
- JavaScript
- middleware
- hardhat
- evm
- built in object
- Props
- Interface
- solidity
- SSR
- graphQL
- bitcoin
- nextJS
- typeScript
- blockchain
- 삶
- CSS
- Redux
- CLASS
- tailwindcss
- concept
- web
- error
- 기준
- node.js
- express.js
- HTML
- REACT
- useState
- Ethereum
- Today
- Total
목록Operators (2)
ReasonJun
SCSS (Sass CSS) stands for "Sassy CSS" and is a popular extension of CSS (Cascading Style Sheets). It introduces a set of enhancements and features that make writing and maintaining CSS code more efficient and organized. SCSS is often used in combination with build tools like Webpack and preprocessors to streamline web development workflows. Here are the key features and concepts of SCSS: Nestin..
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; // ..