이 브라우저에선 되고 저 브라우저에선 안되는 우리 사이트를 살려주세요
- Chrome (Chromium)
- Firefox
- Safari (Webkit)
- Opera
- Edge
- 네이버 웨일 (한국 한정)
| # Object prototypes | |
| When altering the behavior of existing `Object.prototype` methods, consider injecting code by wrapping your extension before or after the existing logic. For example, this (untested) code will pre-conditionally execute custom logic before the built-in logic or someone else's extension is executed. | |
| 기존 Object.prototype 메서드의 동작을 변경하고자 할 때에는 기존 내용의 앞이나 뒤에 확장할 내용을 래핑하여 코드를 주입하는 것을 고려하세요. 예를 들어, 이 (테스트되지 않은) 코드는 기본 제공 코드 또는 다른 사람의 확장 실행되기 전에 사전 조건부로 사용자 정의 코드를 실행합니다. | |
| When a function is called, the arguments to the call are held in the array-like "variable" arguments. For example, in the call `myFn(a, b, c)`, the arguments within `myFn`'s body will contain 3 array-like elements corresponding to `(a, b, c)`. | |
| 함수가 호출되면 호출에 대한 매개변수가 유사배열 "변수" arguments 객체에 보관됩니다. 예를 들어, myFn(a, b, c)를 호출하면 myFn 본문 내의 arguments 객체에는 (a, b, c)에 해당하는 3개의 유사배열요소가 포함됩니다. |
People
:bowtie: |
😄 :smile: |
😆 :laughing: |
|---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
| { | |
| "singleQuote": true, | |
| "semi": true, | |
| "useTabs": false, | |
| "tabWidth": 2, | |
| "trailingComma": "all", | |
| "printWidth": 80 | |
| } |