IT321 vue dynamic image :src 안먹힐때 사용하는 방법 getIconPath (iconName) { return iconName ? require(`@/assets/icons/${iconName}`) : '' } 2020. 6. 25. !! 연산자 console.log(!!0); //false console.log(!!1); //true console.log(!!'string'); //true console.log(!!''); //false console.log(!!{}); //true console.log(!![1,2,3]); //true 피연산자를 불린 값으로 변환한다. 객체는 값이 비어있는 빈 객체여도 true로 반환된다. 2020. 6. 25. typeof const a = "a"; typeof a; 기본타입 숫자 number 기본타입 문자 string 기본타입 불린 boolean 기본타입 null object 기본타입 undefined undefined 참조타입 객체 object 참조타입 배열 object 참조타입 함수 function 2020. 6. 25. 배열의 요소 삭제 splice(배열의 시작 위치, 시작위치부터 삭제할 요소의 수, 삭제할 위치에 추가할 요소 ) arr.splice(0, 1, '1') 2020. 6. 24. 이전 1 ··· 26 27 28 29 30 31 32 ··· 81 다음