📝
JavaScript
  • Orientation
  • 조건문
  • document.write()
  • i++와 ++i 의 차이
  • 반복문 - continue
  • 함수(Function)
  • 배열(Array)
  • 객체(Object)
  • 모듈(Module)
  • 라이브러리
  • UI, API 그리고 문서보는 법
  • 정규표현식(Regular Expression)
  • 함수 지향
  • 값으로서의 함수와 콜백
  • 클로저(Closure)
  • Arguments
  • 함수의 호출
  • 객체지향(OOP;Object-oriented Programming)
  • 생성자와 new
  • 전역 객체
  • this
  • 상속
  • 프로토타입(prototype)
  • 표준 내장 객체의 확장
  • Object
  • 데이터 타입(Data Type)
  • 참조
  • Node.js
    • Intro
    • Module
    • npm
    • npm#2
    • callback
    • Synchronous, Asynchronous
    • Express
    • Express, Template
    • Jade(Pug) 문법#1
    • URL을 이용한 정보 전달
    • Semantic URL
    • Jade(Pug) 문법#2
    • POST
    • GET과 POST
    • Web Application 만들기
Powered by GitBook
On this page

Was this helpful?

반복문 - continue

<script type="text/javascript">
    for(var i = 0; i < 10; i++) {
        if(i == 5) {
            continue;
        }
        document.write('coding everybody' + i + '<br />');
</script>

5는 출력되지 않는다.i가 5일 때만 종료시키고 다시 반복문 조건문 시작할 때로 돌아가 실행된다.

Previousi++와 ++i 의 차이Next함수(Function)

Last updated 4 years ago

Was this helpful?