728x90 300x250 SMALL 분류 전체보기1126 지역변수와 전역변수 전역변수 : 전역에서 사용하는 데이터를 담고 있는 변수로 어디서든지 접근해서 사용할수 있다. 지역변수 : 특정역역에서만 사용할 수 있는 변수로 주로 함수내부에 만들어지는 변수를 말한다. 매개변수(파라미터) : 함수 외부에서 함수 내부로 데이터를 전달하기 위한 용도로 사용하는 변수 멤버변수(프로퍼티) : 클래스 내부에 만들어지며 주로 객체에서 사요하는 정보를 담는 변수 ex) 지역변수 전역변수 구별 예제 var name="test1"; function func1(){ var name="test2"; document.write("2. name = "+name," "); // 2 지역 } function func2(){ var name="test3"; document.write("3. name = "+name.. 2019. 4. 1. 서브라임 텍스트 'gbk' 문제 또 이렇게 gbk가 저번에도 이런문제가 있어서 패키지를 설치 했는데도 또 이런다 ;; https://xuri.me/2013/04/28/sublime-text-gbk-support-and-input-chinese-with-ibus-on-ubuntu.html Sublime Text 2/3 GBK Encoding Support and Input Chinese with ibus on Ubuntu Sublime Text 3 GBK Encoding Support Press Ctrl ~ to open the command line, and then enter the following line of code import urllib.request,os,hashlib; h = '2915d1851351e5ee549c203.. 2019. 3. 31. 함수만드는 방법 ▶ 1단계 먼저 코드에서 함수로 포장할만한 중복 코드나 재사용 로직이 있는지 확인해본다. ▶ 2단계 중복된 코드를 담을 빈함수를 만들어준다. function 함수이름(){ 실행구문;(포장할 내용을 여기에 작성) } ▶ 3단계 만들어진 빈함수에 중복 코드를 포장해준다. ▶ 4단계 함수호출을 만들어준다. 예제) var star = ""; for (var i = 1; i 2019. 3. 30. 모바일용 메뉴 :: 좌우 슬라이드 https://www.w3schools.com/code/tryit.asp?filename=G2IAQFL94ZH6 Tryit Editor v3.6 Save to Google Drive If you have a Google account, you can save this code to your Google Drive. Google will ask you to confirm Google Drive access. Save file as: Save file www.w3schools.com × About Services Clients Contact Animated Sidenav Example Click on the element below to open the side navigation menu. ☰ open 매.. 2019. 3. 29. 이전 1 ··· 252 253 254 255 256 257 258 ··· 282 다음 728x90 반응형 LIST