Array
array 출력
- 아래와 같은 3가지 방법이 있으며 결과는 동일하다.
const 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 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(' ');
};