일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- blockchain
- Interface
- HTML
- CLASS
- Ethereum
- 삶
- tailwindcss
- solidity
- error
- express.js
- JavaScript
- typeScript
- web
- middleware
- Props
- 기준
- evm
- CSS
- node.js
- nextJS
- useState
- SSR
- REACT
- built in object
- hardhat
- bitcoin
- graphQL
- API
- Redux
- concept
- Today
- Total
목록Frontend/Javasciprt (48)
ReasonJun
cookie In web development, a cookie is a small piece of data stored by a website in the user's web browser. Cookies are commonly used to store information that can be retrieved and used by the website or other websites that recognize the cookie. They are primarily used for session management, personalization, tracking, and maintaining user preferences. Here are some key points about cookies: Sto..
console // console //? .log(), .warn(), .error(), .dir() // -log : general message // -warn : warning message // -error : error message // -dir : Output an object whose properties can be viewed console.log(document.body); console.warn(document.body); console.error(document.body); console.dir(document.body); //? .count(), .countReset() // Prints or initializes the cumulative number of console met..
In JavaScript, a Symbol is a primitive data type introduced in ECMAScript 2015 (ES6). It is a unique and immutable value that can be used as an identifier for object properties. Symbols are often used as keys in objects to avoid naming conflicts and ensure uniqueness. const mySymbol = Symbol(); // create a Symbol using the Symbol() function const mySymbol = Symbol('My Symbol'); // Symbols can al..
In JavaScript, a Map is a built-in data structure that allows you to store key-value pairs, where both the keys and values can be of any type. It provides an efficient way to associate values with unique keys and perform operations such as insertion, retrieval, and deletion. const myMap = new Map(); // creating a new Map const myMap = new Map([ // initialize a Map ['key1', 'value1'], ['key2', 'v..
set In JavaScript, a Set is a built-in data structure that allows you to store unique values of any type. It provides a way to store a collection of values without any duplicates. The values in a Set can be of any type, including primitives like numbers and strings, as well as objects and other sets. const mySet = new Set(); // creating a new Set const mySet = new Set([1, 2, 3, 3, 4, 5, 5]); // ..
mouse pointer event // Mouse & Pointer Events // click // dbclick : double click // mousedown : press the button // mouseup : release the button // mouseenter : When the pointer goes over an element // mouseleave : when the pointer goes out of the element // mousemove : when the pointer moves // contextmenu : when right-clicked // wheel :When the wheel button rotates const parentEl = document.qu..