유데미는 고객지원이 아주 잘되어있으므로 짧은 영어로라도 문의를 해서 해결 받으면 좋다 결제문제, 환불 문제 등 신속하게 해결해준다. 해결해 본 문제들🤔 결제 안되는 문제 결제가 연속으로 n회 이상 실패하면 계정 결제 자체가 막히는 경우가 있다 (해외 결제 차단을 안 풀어놓고 결제 시도를 계속했더니 결제 불가능한 상태가 됨) 결제 시도시에 udemy support로 연락하라고 메세지가 표시되고, 해당 페이지로 이동하면 우측 하단에서 채팅 상담이 가능하다. 문의하면 확인 후 풀어준다👍 강의 결제 후 바로 다음날 더 할인된 가격으로 행사중일때 30일이내에 환불 가능하므로 환불 신청할까 고민했는데 환불 페이지에서 동일한 강의에 대해 더 나은 특별 이벤트를 찾았습니다 선택항목을 발견하고 선택하여 문의를 접수하니 ..
'use strict' 선언하기 1. forbid us to do certain things 2. create visible errors 3. introduce a short list of variable names that are reserved for features that might be added to the language a bit later. https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Strict_mode
0, '', undefined, null, NaN
![](http://i1.daumcdn.net/thumb/C148x148/?fname=https://blog.kakaocdn.net/dn/OaIjM/btrasUQNhgS/JmKHwgxwCQXfUKfk95rKPK/img.gif)
https://www.w3schools.com/js/js_htmldom.asp 브라우저는 자바스크립트 엔진을 가지고 있다. 크롬 : V8 engine 엣지 : Chalker Core 사파리 : Nitro 파이어폭스 : Spider Monkey 자바스크립트 엔진은 자바스크립트 파일을 한줄씩 읽어서 실행한다 https://www.w3schools.com/js/pic_htmltree.gif 자바스크립트는 페이지의 모든 HTML 요소를 바꿀 수 있다. 자바스크립트는 페이지의 모든 HTML 속성(attribute)을 바꿀 수 있다. 자바스크립트는 페이지의 모든 CSS 스타일을 바꿀 수 있다. 자바스크립트는 HTML의 존재하는 요소와 속성(attribute)을 삭제할 수 있다. 자바스크립트는 새로운 HTML 요소와..
theme-color 태그의 name 속성에 대한 theme-color 값으로 유저 인터페이스를 감싸고 있는 페이지의 디스플레이를 커스터마이징 할 수 있다. content속성은 hex코드로 작성해주면 된다. 해당 웹사이트를 탭에서 더 눈에 띄게 만들 수 있다. 다크모드와 라이트모드 미디어쿼리를 이용해서 theme-color를 적용할 수 있다. PC - safari Mobile - Chrome Android, Safari on iOS, Samsung Internet Browser 출처 https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta/name/theme-color
![](http://i1.daumcdn.net/thumb/C148x148/?fname=https://blog.kakaocdn.net/dn/PFntg/btraqSrHbN2/af8U4oQ9ieykFahOwvuK3k/img.png)
https://www.youtube.com/watch?v=qGTdmls1yYg 위 영상을 정리한 포스팅입니다. 1. 화살표 함수에서 return 까먹는 경우 const add = (a, b) => { return a + b; } 중괄호와 return이 연달아 있으면 생략할 수 있다. add (1,2) // 3 const add = (a, b) => a + b; const add = (a, b) => (a + b); const add = (a, b) => ( a + b ) const add = (a, b) => { a + b } add(1,2) // undefined const add = (a, b) => { return a + b } return을 반드시 적어줘야 한다. 중괄호와 return이 붙어있을때..
![](http://i1.daumcdn.net/thumb/C148x148/?fname=https://blog.kakaocdn.net/dn/Z3rzF/btrao6qlFuA/9k6rujL7SxtDkPmrHTAt8k/img.png)
https://www.youtube.com/watch?v=qGTdmls1yYg 위 영상을 정리한 포스팅입니다. 1. 함수 자리에 함수()를 넣는 경우 1초 뒤에 콘솔로그 hello 찍기 setTimeout(()=>{ console.log('hello'); },1000); setTimeout(function()=>{ console.log('hello'); },1000); setTimeout(console.log('hello'), 1000); 이렇게 해도 되나보다? 👉 hello가 바로 콘솔에 찍힌다. window.addEventListener('click',()=>{ console.log('hello'); }); window.addEventListener('click', console.log('hello'..