-
배열에서 특정 값이 있는지 확인하고 없을 때 값을 넣고 싶으면 array.includes() 메소드 이용 if (!(exmapleArray.includes(p))){ exmapleArray.push(p) } 객체에서 특정 키 값이 존재하는지 확인하고 싶을 때 object.hasOwnProperty(key) if (userList.hasOwnProperty(name)){ // 내용 }