일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- evm
- CLASS
- hardhat
- JavaScript
- API
- Props
- node.js
- middleware
- graphQL
- tailwindcss
- Interface
- SSR
- nextJS
- concept
- web
- Redux
- typeScript
- bitcoin
- error
- solidity
- blockchain
- 기준
- 삶
- express.js
- useState
- built in object
- CSS
- Ethereum
- HTML
- REACT
- Today
- Total
목록Prototype (2)
ReasonJun
Object.create() Object.create() is a static method in JavaScript that creates a new object with the specified prototype object and properties. It allows you to create an object and explicitly set its prototype. The basic syntax for using Object.create() is as follows: Object.create(proto, [propertiesObject]) proto: The object that will be the prototype of the newly created object. It can be null..
In JavaScript, the prototype is an internal property of objects that allows objects to inherit properties and methods from other objects. Every JavaScript object has a prototype, except for the base object Object.prototype, which is the ultimate prototype for all objects. The prototype forms the basis for JavaScript's prototype-based inheritance model. When you access a property or method on an ..