Skip to main content

set

Finds the value in obj by path and replaces it with value.

function set(
// 값을 수정할 객체
obj: Record<string, any>,
// 수정할 값의 경로
path: string,
// 새로운 값
value: any
): Record<string, any>;

Example

set({ a: { b: 1 } }, 'a.b', 2); // { a: { b: 2 } }