Movatterモバイル変換


[0]ホーム

URL:


  1. 개발자를 위한 웹 기술
  2. JavaScript
  3. JavaScript 참고서
  4. 표준 내장 객체
  5. Reflect
  6. Reflect.set()

This page was translated from English by the community.Learn more and join the MDN Web Docs community.

View in EnglishAlways switch to English

Reflect.set()

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨2016년 9월⁩.

Reflect.set() 정적 메서드는 객체 속성의 값을 설정합니다.

시도해 보기

const object1 = {};Reflect.set(object1, "property1", 42);console.log(object1.property1);// Expected output: 42const array1 = ["duck", "duck", "duck"];Reflect.set(array1, 2, "goose");console.log(array1[2]);// Expected output: "goose"

구문

js
Reflect.set(target, propertyKey, value[, receiver])

매개변수

target

속성의 값을 설정할 대상 객체.

propertyKey

값을 설정할 속성의 이름.

value

설정할 값.

receiverOptional

속성이 설정자일 경우,this로 사용할 값.

반환 값

값 설정의 성공 여부를 나타내는Boolean.

예외

targetObject가 아니면TypeError.

설명

Reflect.set() 메서드는 객체 속성의 값을 설정할 수 있습니다. 속성 추가도 할 수 있으며, 함수라는 점을 제외하면 동작 방식은속성 접근자와 같습니다.

예제

Reflect.set() 사용하기

js
// Objectvar obj = {};Reflect.set(obj, "prop", "value"); // trueobj.prop; // "value"// Arrayvar arr = ["duck", "duck", "duck"];Reflect.set(arr, 2, "goose"); // truearr[2]; // "goose"// 배열 자르기Reflect.set(arr, "length", 1); // truearr; // ["duck"];// 매개변수를 하나만 제공하면 속성 키 이름은 문자열 "undefined", 값은 undefinedvar obj = {};Reflect.set(obj); // trueReflect.getOwnPropertyDescriptor(obj, "undefined");// { value: undefined, writable: true, enumerable: true, configurable: true }

명세

Specification
ECMAScript® 2026 Language Specification
# sec-reflect.set

브라우저 호환성

같이 보기

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp