Javascript [javascript] 파라미터로 동적객체 생성하기 2023-10-13 / No Comments const LIB = {}; function test(param){ LIB[`${param}`] = 'test'; } test('obj'); console.log(LIB.obj); result : 'test'