javascript 썸네일형 리스트형 sweetalert2 SassError 에러 발생시 react에서 sweetalert2을 사용하려고 import 하니아래와 같이 에러가 발생 SassError: Invalid CSS after "...ch $size in map": expected expression (e.g. 1px, bold), was ".keys(variables.$co" node-sass을 삭제 npm uninstall node-sass sass 설치 npm install sass --save 더보기 stroll.js http://lab.hakim.se/scroll-effects 더보기 replaceAll 기능 구현 JavaScript 에서 replace 사용시 하나의 문자만 치환 해줌 var text = "12341234"; text.replace("1","-"); 결과값 : -2341234 replaceAll 을 구현 하기 위해서는 var text = "12341234"; text.split("1").join("-"); 결과값 : -234-234 더보기 parseInt 함수 문제 parseInt 문자열을 integer 형태로 변환하는 함수 '08', '09' 을 parseInt 을 이용해 변환 할 경우 리턴 값이 0 이 나옴 이럴땐 parseInt 인자값에 진수를 표기 parseInt('09',10); 이렇게 사용 하면 9가 올바르게 출력 됨 물론 16, 2로 변환 가능 더보기 이전 1 다음