336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

   문자는 " "나 ' '로 표시



   --> 위에 먼저 실행후 정지, 그다음으로 넘어가면 다음것을 실행한다.

   alert("이것은 '문자' 문자입니다");

     -이것은 '문자' 문자입니다

   alert('이것은 "문자" 문자입니다');

     -이것은 "문자" 문자입니다


   alert('이것은 '문자' 문자입니다'); ->잘못된 예


   console.log("이것은 '문자' 문자입니다");

   console.log('이것은 "문자" 문자입니다');

   console.log('1234'); ->숫자 1234가 아니라 문자 1234이다.



   //

   alert('값');  -> 경고창을 말한다.

   console.log('값');

   document.write('값');






'publishing > java script' 카테고리의 다른 글

if문  (0) 2017.03.28
java script  (0) 2017.03.25
array_test  (0) 2017.03.25
array(배열)  (0) 2017.03.22
number(숫자), variable(변수)  (0) 2017.03.22