WeakMap.prototype.set()
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
set()
메서드는 지정된 키와 값을 가진 새 요소를 WeakMap
객체에 추가합니다.
시도해보기
구문
js
set(key, value);
매개변수
반환 값
WeakMap
객체입니다.
예제
set() 메서드 사용하기
js
const wm = new WeakMap();
const obj = {};
// WeakMap에 새 요소를 추가합니다
wm.set(obj, "foo").set(window, "bar"); // 체인가능
// WeakMap 요소 업데이트
wm.set(obj, "baz");
명세서
Specification |
---|
ECMAScript Language Specification # sec-weakmap.prototype.set |
브라우저 호환성
BCD tables only load in the browser