객체1 객체 (4줄 짜리) //객체 const superman ={ name : 'clark', age : 30 , } superman.hairColor = 'greenyellow'; superman['hobby'] ='baseball'; console.log(superman) *************************************************************************** *************************************************************************** 함수 속 객체 function makeObject(name, age){ return { name, age, hobby:"baseball" }; } const Mini = makeObject.. 2022. 2. 11. 이전 1 다음