기본
Object.assign()
메서드는 출처 객체들의 모든 열거 가능한 자체 속성을 복사해 대상 객체에 붙여 넣음.
그 후 대상 객체를 반환
Object.assign(target …
Object.assign()
메서드는 출처 객체들의 모든 열거 가능한 자체 속성을 복사해 대상 객체에 붙여 넣음.
그 후 대상 객체를 반환
Object.assign(target …
Object.freeze(obj)
동결할 객체
함수로 전달된 객체(copy를 생성하는 것이 아님)
객체를 동결
동결된 객체는 아 …
read moreconst cities = ['seoul', 'incheon', 'busan'];
//for
for(let i = 0; i < cities.length; i++){
console.log(cities[i]);
}
//for..of
for(let city of cities){
console.log …
const people = [
{ id: 1, name: 'Ichiro-Tanaka', nation: 'Japan', gender: 'male' },
{ id: 2, name: 'Ming-Liu', nation: 'Tiwan', gender: 'female' },
{ id: 3, name: 'Fei', nation: 'China', gender: 'male' },
{ id: 4, name: 'Jane-Levy', nation: 'America', gender: 'female' },
{ id: 5, name: 'Sangwu-Lee', nation: 'Korea', gender: 'male' },
{ id: 6, name: 'Tom-Jackson', nation: 'England', gender: 'male …
setAttribute
document.getElementById("기존 id").setAttribute("name", "새로운 name");
document.getElementById("기존 id").setAttribute("id", "새로운 id");
id와 name값을 동시에 변경할 때는 name을 먼 …
read more const changeCommaToHash = (str: string) => {
if (!str) return str;
return str
.split(',')
.map(tag => '#' + tag)
.join(' ');
};